keep-running/bin/test.sh

18 lines
248 B
Bash
Raw Normal View History

2023-11-19 02:28:59 +00:00
#!/bin/bash
SLEEP=${1:-'10'}
EXIT=${2:-'0'}
2023-11-19 02:28:59 +00:00
echo "Sleeping for $SLEEP seconds...";
sleep $SLEEP;
echo "Waking up!";
if [ $EXIT > 0 ]; then
>&2 echo "Exiting with error code $EXIT";
else
echo "Exiting with error code $EXIT";
fi
exit $EXIT;