diff --git a/bin/sleep-hook.sh b/bin/sleep-hook.sh new file mode 100755 index 0000000..27a1214 --- /dev/null +++ b/bin/sleep-hook.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +set -e + +LIMIT="${1:-30}" + +echo "Waiting for ${LIMIT} seconds." +sleep "${LIMIT}"