13 lines
99 B
Bash
13 lines
99 B
Bash
#!/bin/sh
|
|
|
|
if [ $# -ne 0 ]
|
|
then
|
|
echo "not the right usage"
|
|
exit 1
|
|
fi
|
|
|
|
while true
|
|
do
|
|
sleep 20
|
|
done
|