X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=man_util.bash;h=2a12737e9a3768fa66872249baa1def89f01e2c6;hp=687acaab5510dab25cc83a2e65b319359d85b3d0;hb=4adde8dae3317fa83b81e7a860c9ed9133e99bb0;hpb=f5cf47f2bc4bb76d0d21e2467c5846cade38558f;ds=sidebyside diff --git a/man_util.bash b/man_util.bash index 687acaab..2a12737e 100755 --- a/man_util.bash +++ b/man_util.bash @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Receivers, filters, writers are called "modules" in this script +# writers are called "modules" in this script print_modhelp() { local ggo="$1" @@ -39,22 +39,6 @@ make_help() --set-package "para_$1" \ < "$ggo" - if [[ "$target" == 'recv' || "$target" == 'audiod' ]]; then - for module in $RECEIVERS; do - ggo="$GGO_DIR/${module}_recv.ggo" - [[ ! -f "$ggo" ]] && continue - printf "\nOptions for the $module receiver" - print_modhelp "$ggo" - done - fi - if [[ "$target" == 'filter' || "$target" == 'audiod' ]]; then - for module in $FILTERS; do - ggo="$GGO_DIR/${module}_filter.ggo" - [[ ! -f "$ggo" ]] && continue - printf "\nOptions for the $module filter" - print_modhelp "$ggo" - done - fi if [[ "$target" == 'write' || "$target" == 'audiod' ]]; then for module in $WRITERS; do ggo="$GGO_DIR/${module}_write.ggo"