keep-running/bin/run.sh

11 lines
113 B
Bash
Executable File

#!/bin/bash
SLEEP=${1:-'10'}
echo "Sleeping for $SLEEP seconds...";
sleep $SLEEP;
echo "Waking up!";
exit 1;