diff options
Diffstat (limited to 'noise/modules/sleep')
-rwxr-xr-x | noise/modules/sleep | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/noise/modules/sleep b/noise/modules/sleep deleted file mode 100755 index 89712cac..00000000 --- a/noise/modules/sleep +++ /dev/null @@ -1,10 +0,0 @@ -#! /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 - sleep "$1" - else - echo '[31;1mFAIL: $1 is not a number[m' - fi -esac |