aboutsummaryrefslogtreecommitdiffstats
path: root/mayor-orig/bin/help.sh
diff options
context:
space:
mode:
authorM.Gergo2019-03-08 21:20:34 +0100
committerM.Gergo2019-03-08 21:20:34 +0100
commitf51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0 (patch)
treee13e60e4b94a3b58f1e2bfbe271102c8f04b67bd /mayor-orig/bin/help.sh
parentc76a004b0135786f2742283f8d5f917106f58bd8 (diff)
downloadmayor-f51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0.tar.gz
mayor-f51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0.zip
további rendrakás
Diffstat (limited to 'mayor-orig/bin/help.sh')
-rw-r--r--mayor-orig/bin/help.sh47
1 files changed, 0 insertions, 47 deletions
diff --git a/mayor-orig/bin/help.sh b/mayor-orig/bin/help.sh
deleted file mode 100644
index e983ccd3..00000000
--- a/mayor-orig/bin/help.sh
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/bin/bash
-
-OPT_SPEC="hf::"
-LONG_OPT_SPEC="help,file:,f::"
-PARSED_OPTIONS=$(getopt -n "$0" -a -o $OPT_SPEC --long $LONG_OPT_SPEC -- "$@")
-OPTIONS_RET=$?
-eval set -- "$PARSED_OPTIONS"
-
-help_usage() {
- print_help;
- echo -e "\nHELP használata: mayor help [parancs]\n\n"
-}
-
-if [ $OPTIONS_RET -ne 0 ] || [ $# -le 1 ]; then help_usage; exit; fi
-
-while [ $# -ge 1 ]; do
- case $1 in
- --help | -h ) help_usage
- exit
- ;;
-
- --file | -f ) shift
- FILE="$1"
- echo "FILE: $FILE"
- ;;
-
- -- ) shift
- break
- ;;
-
- * ) echo "HIBA: ismeretlen opció: $1" # ide elvileg sose jutunk, mert a getopts már kiszűrte a hibás paramétereket...
- exit
- ;;
- esac
- shift
-done
-
-while [ $# -ge 1 ]; do
- echo -e "\n---------- HELP: $1 ----------\n"
- if [[ ! "${CMDS[*]}" =~ .*$1.* ]]; then
- echo -e "Ismeretlen parancs: $1"
- #print_help
- else
- . ./$1.sh --help
- fi
- shift
-done