diff options
author | tv <tv@also> | 2010-04-26 15:19:51 +0200 |
---|---|---|
committer | tv <tv@also> | 2010-04-26 15:19:51 +0200 |
commit | 50aa02ccf1de40bc5f518d212a89c587c2b7d859 (patch) | |
tree | 87cebf2bf3a82d526e9f3bd3b3a2d3a965d57706 /modules |
Rewrite of SHACK UTTERANCE 0.9 beta 1
Diffstat (limited to 'modules')
-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 |