반응형
무한 알람
#!/bin/zsh
SERVICE="python3"
while [ 1 ]
do
#$pid=pgrep "${SERVICE}"
#echo $pid
if ! pgrep -xq "${SERVICE}"
then
echo "Process is complete!"
while [ 1 ]
do
say "작업이 완료되었습니다!"
done
exit
else
echo "Process is running"
fi
sleep 3
done
반응형
'Information* > 알면도움됨' 카테고리의 다른 글
ELECTRON 체험기 (0) | 2022.04.19 |
---|---|
고려대 안전교육 스킵 코드 (0) | 2021.12.29 |
How to break out of multiple loops in python? (0) | 2021.10.21 |
특정 프로그램이 지원하는 파일 확장자 알아보기 in windows 10 (1) | 2021.10.12 |
Index를 unsigned 변수로 사용 시 주의할 점 (0) | 2021.09.28 |