summaryrefslogtreecommitdiffstats
path: root/.graveyard/noise/modules/help
diff options
context:
space:
mode:
authormakefu <root@pigstarter.de>2013-12-10 19:49:34 +0100
committermakefu <root@pigstarter.de>2013-12-10 19:49:34 +0100
commite847dd73730eb638d75e2d0cbc36340be7bb517e (patch)
tree26aa0e70c803ffb4d643e6f63ea05f8336668c57 /.graveyard/noise/modules/help
parent9baf5c9a0a86cb94469eea069e984cc7253635b8 (diff)
parent93649c0d464de3b62dfd7fbc717386e6905bbbd2 (diff)
Merge branch 'master' of https://github.com/krebscode/painload
Diffstat (limited to '.graveyard/noise/modules/help')
-rwxr-xr-x.graveyard/noise/modules/help24
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/$//
+ s:^\([a-z]\+\) \(.\+\):type /\1 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