Notice
Recent Posts
Recent Comments
Link
- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
민서네집
[batch] sleep 배치파일 만들기 본문
How to sleep for 5 seconds in Windows's Command Prompt? (or DOS)
https://code.i-harness.com/en/q/198492
위 웹페이지에 쓰여 있는대로 timeout, choice 등의 batch 명령을 사용할 수도 있다.
python - Sleeping in a batch file
https://code.i-harness.com/en/q/2889c
@ECHO OFF REM %1 is the number of seconds for the delay, as specified on the command line > "%Temp%.\sleep.vbs" ECHO WScript.Sleep %~1 * 1000 CSCRIPT //NoLogo "%Temp%.\sleep.vbs" DEL "%Temp%.\sleep.vbs"
[출처] http://www.robvanderwoude.com/wait.php
위와 같이 sleep.bat 배치 파일을 만들어서 사용하면
sleep 3.14
이런 식으로 초 단위로 소숫점으로 지정해 줄 수도 있다.
'프로그래밍' 카테고리의 다른 글
git - Pull Request (0) | 2018.01.10 |
---|---|
Private Git Repository (0) | 2018.01.10 |
[batch] console 프로그램 실행시간 구하기 (0) | 2018.01.06 |
User agent 를 분석하는 API (0) | 2017.08.03 |
plotly (0) | 2016.12.05 |
Comments