Link Search Menu Expand Document

90초 대기하면서 특정 조건을 체크 및 중지하려면?

작성자 : 유영창 (frog@falinux.com), 작성일 : 2021년 9월 19일(일)

for loop in {1..90}
do
    condition=$(조건검사명령)
    if [[ condition == "stop" ]]; then
        break
    fi
    sleep 1
done

Table of contents