#TIL #batch 5초 sleep less than 1 minute read C:\> ping 127.0.0.1 -n 6 > nul ping 사이에 1초 delay라서 5가 아닌 6을 넘긴다. C:\> timeout /t 5 timeout 명령어를 사용해도 된다. 참고 - Sleeping in a batch file - stackoverflow.com Twitter Facebook LinkedIn Previous Random Next
#TIL #batch 무한 루프 less than 1 minute read C:\> help for FOR /L %변수 IN (시작,단계,끝) DO 명령 [명령-매개 변수] 집합은 단계별로 증가/감소하는 시작부터 끝까지의 일련의 숫자입니다. 따라서 (1,1,5)는 1 2 3 4 5를 나타내며 (5,-1,1)은 5 4 3 2 1을 나...
#TIL #batch #bash redirection 연산자를 앞으로 당겨도 되잖아 less than 1 minute read >result.txt echo first line >>result.txt echo second line >>result.txt echo third line
#TIL #batch #bash 제어 연산자로 만드는 명령어 리스트 less than 1 minute read 제어 연산자(control operator)를 사용하면 한 줄에 여러 명령을 실행할 수 있다. 간단히 if 문(statement)을 쓴 효과를 누릴 수 있다.