16 lines
117 B
Plaintext
16 lines
117 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
handle() {
|
||
|
echo "got signal"
|
||
|
exit
|
||
|
}
|
||
|
|
||
|
trap handle SIGINT
|
||
|
|
||
|
while true
|
||
|
do
|
||
|
echo bar: `date`
|
||
|
sleep 1
|
||
|
done
|
||
|
|