diff options
author | makefu <github@syntax-fehler.de> | 2013-12-09 22:04:23 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2013-12-09 22:04:23 +0100 |
commit | 6755676db22c82806763f19e7654c2f7c03279c2 (patch) | |
tree | 8317c4c9d67b776681e3005a91bd0548d0e7d8db /.graveyard/noise/modules/help | |
parent | 1a49b2e844a733812be1de8fc76af1a4c2ec5f0e (diff) | |
parent | f4f5b3b7aff2ac45ee035f54d6e8899ff963d133 (diff) |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to '.graveyard/noise/modules/help')
-rwxr-xr-x | .graveyard/noise/modules/help | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.graveyard/noise/modules/help b/.graveyard/noise/modules/help new file mode 100755 index 00000000..0763f3a0 --- /dev/null +++ b/.graveyard/noise/modules/help @@ -0,0 +1,24 @@ +#! /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 |