topic/rust #2
10
bin/test.sh
10
bin/test.sh
|
@ -1,18 +1,18 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
SLEEP=${1:-'10'}
|
SLEEP=${1:-10}
|
||||||
EXIT=${2:-'0'}
|
EXIT=${2:-0}
|
||||||
|
|
||||||
echo "Sleeping for $SLEEP seconds...";
|
echo "Sleeping for $SLEEP seconds...";
|
||||||
|
|
||||||
sleep $SLEEP;
|
sleep "$SLEEP";
|
||||||
|
|
||||||
echo "Waking up!";
|
echo "Waking up!";
|
||||||
|
|
||||||
if [ $EXIT > 0 ]; then
|
if [ "$EXIT" -gt "0" ]; then
|
||||||
>&2 echo "Exiting with error code $EXIT";
|
>&2 echo "Exiting with error code $EXIT";
|
||||||
else
|
else
|
||||||
echo "Exiting with error code $EXIT";
|
echo "Exiting with error code $EXIT";
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exit $EXIT;
|
exit "$EXIT";
|
Loading…
Reference in New Issue