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
- Windows 10
- xargs
- context
- Source
- Windows
- netsh
- IntelliJ
- Mac
- Eclipse
- grep
- lsof
- 네트워크
- resource
- web.xml
- VirtualBox
- vscode
- 줄바꿈 문자
- JavaScript
- Quartz
- import
- bash
- find
- port
- maVen
- profile
- ssh
- 단축키
- tomcat
- plugin
- GIT
Archives
- Today
- Total
목록OS & Shell/Windows (11)
develog
[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
현재 시간
clsecho off set yyyy=%date:~0,4%set mm=%date:~5,2%set dd=%date:~8,2%set yyyymmdd=%yyyy%%mm%%dd% set hh=%time:~0,2%set mi=%time:~3,2%set ss=%time:~6,2%set hhmiss=%hh%%mi%%ss% set now=%hhmiss%.%yyyymmdd% echo %date%echo %time%echo %now%
OS & Shell/Windows
2013. 11. 28. 10:39
[Windows cmd] tasklist, taskkill
프로세스 확인tasklist /v | findstr java 프로세스 종료taskskill /pid 프로세스번호
OS & Shell/Windows
2013. 9. 5. 16:29
windows 예약된 작업 command line 실행
C:\> schtasks /Run /TN "MyDailyJob"
OS & Shell/Windows
2013. 6. 18. 14:45