diff options
author | root <root@shack.(none)> | 2010-05-07 04:06:42 +0200 |
---|---|---|
committer | root <root@shack.(none)> | 2010-05-07 04:06:42 +0200 |
commit | 71fa84f005bb73e813a34e78dd4cb58a072b3879 (patch) | |
tree | 95583c7f40c4e728050894291b6f00a03dae1c03 /modules | |
parent | 0cd01b51b46f270a8232f3b525bcde06ffe58c4e (diff) |
Added module: sleep
Diffstat (limited to 'modules')
-rwxr-xr-x | modules/sleep | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/sleep b/modules/sleep new file mode 100755 index 00000000..b8d350f7 --- /dev/null +++ b/modules/sleep @@ -0,0 +1,10 @@ +#! /bin/sh +case "$1" in + (--help) echo "pause for NUMBER seconds" ;; + (*) + if ! echo "$1" | grep -Eq '^([0-9]+(\.[0-9]*)?|[0-9]*\.[0-9]+)$' ; then + echo '[31;1mFAIL: $1 is not a number[m' + else + sleep "$1" + fi +esac |