-
[Shell Script] while문, until문SW/Shell Script 2019. 8. 18. 15:06
1. while ... do : 조건문이 참인 동안 실행
while [ ] ; do
command
done2. until ... do : 조건문이 참이 될때까지(조건이 거짓인 동안 실행)
until [ ]; do
command
done'SW > Shell Script' 카테고리의 다른 글
[Shell Script] ssh remote command not working well after read line (0) 2020.01.18 [Shell Script] echo 제자리 출력 (카운트다운) (0) 2019.10.18 [Shell Script] for문 여러 형식 (0) 2019.08.18 [Shell Script] 파일인지 폴더인지 if문 및 옵션 (0) 2019.08.18 [Shell Script] case문 (요일별로 동작하기 좋네) (0) 2019.08.18