diff options
author | tv <tv@nomic.retiolum> | 2013-12-09 20:07:19 +0100 |
---|---|---|
committer | tv <tv@nomic.retiolum> | 2013-12-09 20:07:19 +0100 |
commit | f4f5b3b7aff2ac45ee035f54d6e8899ff963d133 (patch) | |
tree | 415410184165bbeaa7ed0cb54b7b915a856e909b /noise/modules/help | |
parent | 5788b95fe7834d3049df9de1009f3d8dbc34fea2 (diff) |
noise: RIP
Diffstat (limited to 'noise/modules/help')
-rwxr-xr-x | noise/modules/help | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/noise/modules/help b/noise/modules/help deleted file mode 100755 index 0763f3a0..00000000 --- a/noise/modules/help +++ /dev/null @@ -1,24 +0,0 @@ -#! /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 2>/dev/null - done - ## print all documented built-in commands - sed -n 's:^noise_\([a-z]\+\)() { # \(.\+\)\?$:\1 \2:p' "$NOISE" - } | sort | uniq | sed -n ' - $s/$/[m/ - s:^\([a-z]\+\) \(.\+\):[35mtype [32m/\1[35m to \2:p' ;; - (*) - ## call - for directory in `echo "$NOISE_PATH" | tr : \ ` ; do - for module in "$directory/$1" ; do - if test -e $module ; then - shift - exec $module --help --verbose "$@" 2>&1 - fi - done - done -esac |