diff options
Diffstat (limited to 'modules/help')
-rwxr-xr-x | modules/help | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/help b/modules/help new file mode 100755 index 00000000..303af362 --- /dev/null +++ b/modules/help @@ -0,0 +1,15 @@ +#! /bin/sh +case "$1" in + (-*) : ;; # ignore all options + ('') { for directory in `echo "$NOISE_PATH" | tr : \ ` ; do + for module in "$directory"/* ; do + echo `basename "$module"` `$module --help` + done + done + ## print all documented built-in commands + sed -rn 's:^noise_([a-z]+)\(\) \{ # (.+)?$:\1 \2:p' "$NOISE" + } | sort | sed -rn ' + $s/$/[m/ + s:^([a-z]+) (.+):[35mtype [32m/\1[35m to \2:p' ;; + (*) exit 23 ;; +esac |