SATS/daemon

12 lines
97 B
Plaintext
Raw Normal View History

2017-01-26 13:23:50 +00:00
#!/bin/sh
c=0;
while [ 1 ]; do
echo "daemon launched $c";
sleep 1;
c=`expr $c + 1`;
done;