keep-running/bin/test.sh

18 lines
254 B
Bash
Raw Permalink 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";
2023-11-19 02:28:59 +00:00
echo "Waking up!";
if [ "$EXIT" -gt "0" ]; then
>&2 echo "Exiting with error code $EXIT";
else
echo "Exiting with error code $EXIT";
fi
exit "$EXIT";