linux-tutorial/codes/shell/控制/捕捉信号.sh
2019-10-29 18:22:19 +08:00

17 lines
229 B
Bash

#!/usr/bin/env bash
# testing signal trapping
trap "echo'Sorry! I have trapped Ctrl-C'" SIGINT SIGTERM
echo this is a test program
count=1
while [ $count -le 10 ]
do
echo "Loop #$count"
sleep 5
count=$[ $count + 1 ]
done