Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- 네트워크
- lsof
- Source
- maVen
- Eclipse
- IntelliJ
- Quartz
- ssh
- JavaScript
- xargs
- Mac
- port
- 단축키
- grep
- 줄바꿈 문자
- import
- netsh
- plugin
- tomcat
- context
- VirtualBox
- GIT
- Windows
- bash
- Windows 10
- web.xml
- profile
- resource
- find
- vscode
Archives
- Today
- Total
목록OS & Shell (146)
develog
[cmd] array loop
@echo off set dir1=eeset dir2=bbset dir3=ccset list=(%dir1% %dir2% %dir3%) for %%i in %list% do ( echo %%i)
OS & Shell/Windows
2014. 12. 3. 10:48
[cmd] 폴더 copy
xcopy /e srcDir\*.* dstDir
OS & Shell/Windows
2014. 12. 3. 10:42
[cmd] 주석
echo aa::echo bb
OS & Shell/Windows
2014. 12. 3. 10:26
[cmd] 날짜, 시간으로 폴더 생성
aa.bat----------------------------------set date2=%date%set time2=%time%set time2=%time2:~0,2%%time2:~3,2%%time2:~6,2%set now=%date2% %time2%set dir="%now%"mkdir %dir%
OS & Shell/Windows
2014. 12. 3. 10:17
[cmd] 날짜, 시간 출력 %date% %time%
date echo %date% # 2014-12-03 echo %date:-=% # 20141203 time echo %time% # 10:08:31.60 echo %time:~0,2% # 10 echo %time:~3,2% # 08 echo %time:~6,2% # 31
OS & Shell/Windows
2014. 12. 3. 10:12