mirror of https://github.com/fengyuhetao/shell.git
17 lines
220 B
Bash
17 lines
220 B
Bash
|
#!/bin/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
|