SATS/daemon

12 lines
97 B
Bash
Executable File

#!/bin/sh
c=0;
while [ 1 ]; do
echo "daemon launched $c";
sleep 1;
c=`expr $c + 1`;
done;