diff options
Diffstat (limited to '.graveyard/noise/modules/echo')
-rwxr-xr-x | .graveyard/noise/modules/echo | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.graveyard/noise/modules/echo b/.graveyard/noise/modules/echo new file mode 100755 index 00000000..344dd963 --- /dev/null +++ b/.graveyard/noise/modules/echo @@ -0,0 +1,6 @@ +#! /bin/sh +case "$1" in + (--help) : ;; + (*) + echo "$*" +esac |