728x90 shellscript2 [Linux] Shell Script 반복문 Overview while true; do # 반복 수행할 내용 기입 done while true; do date sleep 1 done while true; do date; sleep 1; done while :;do date;sleep 1;done repeat.sh foreground 스크립트 생성 및 확인$ echo 'while true; do sleep 1; done' > repeat.sh $ cat repeat.sh #!/bin/bash while true; do sleep 1; done - 스크립트 실행 ```bash $ sh repeat.shbackground 스크립트 실행 $ sh repeat.sh & [1] 11345 $ sh repeat.sh & [2] 11456 $ sh.. Linux 2022. 6. 30. [Shell Script] 쉘스크립트 directory, file 유무 확인 #!/bin/bash # 디렉토리 존재 유무 확인 if [ ! -d 디렉토리명 ];then mkdir 디렉토리명 fi # 파일 존재 유무 확인 if [ ! -e 디렉토리명 ];then touch 파일명 fi Linux 2020. 6. 11. 이전 1 다음 💲 추천 글 728x90