1
0
mirror of https://github.com/peterbourgon/runsvinit.git synced 2024-12-16 14:57:04 +00:00
runsvinit/example/bar

16 lines
117 B
Plaintext
Raw Permalink Normal View History

2015-09-25 10:30:24 +00:00
#!/bin/sh
handle() {
echo "got signal"
exit
}
trap handle SIGINT
while true
do
echo bar: `date`
sleep 1
done