Refactor and support long comm line options
This commit is contained in:
parent
2dd559bec1
commit
6603a539a9
|
@ -3,38 +3,38 @@
|
||||||
usage() {
|
usage() {
|
||||||
cat << EOF
|
cat << EOF
|
||||||
usage: ${0##*/} [command]
|
usage: ${0##*/} [command]
|
||||||
-h Print this help message.
|
-h | --help Print this help message.
|
||||||
-w Use whiptail.
|
-d | --dialog Use dialog.
|
||||||
-d Use dialog.
|
-l | --log Log to CocoRice.log file.
|
||||||
-l Log to CocoRice.log file.
|
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
checkParameters() {
|
checkParameters() {
|
||||||
local counter=0
|
while [ -n "$1" ]; do
|
||||||
while getopts ':hwdfp' flag; do
|
case $1 in
|
||||||
case $flag in
|
-h | --help)
|
||||||
h)
|
|
||||||
usage
|
usage
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
d)
|
-d | --dialog)
|
||||||
|
echo "dialog"
|
||||||
checkForDependencies "dialog"
|
checkForDependencies "dialog"
|
||||||
setDialogBox "dialog"
|
setDialogBox "dialog"
|
||||||
;;
|
;;
|
||||||
f)
|
-l | --log)
|
||||||
checkForDependencies "libnewt"
|
checkForDependencies "libnewt"
|
||||||
setDialogBox "whiptail"
|
setDialogBox "whiptail"
|
||||||
setDebugToFile true
|
setLogToFile true
|
||||||
;;
|
;;
|
||||||
p)
|
-p | --packages)
|
||||||
installPackages=true
|
installPackages=true
|
||||||
;;
|
;;
|
||||||
?)
|
*)
|
||||||
printf '%s: invalid option -%s\n' "${0##*/}" "$OPTARG"
|
printf '%s: invalid option %s\n' "${0##*/}" "$1"
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
shift
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ -z "$(getDialogBox)" ]; then
|
if [ -z "$(getDialogBox)" ]; then
|
||||||
|
|
|
@ -163,10 +163,10 @@ getDialogBox() {
|
||||||
echo "$dialogBox"
|
echo "$dialogBox"
|
||||||
}
|
}
|
||||||
|
|
||||||
setDebugToFile() {
|
setLogToFile() {
|
||||||
export debugFlagToFile=${1}
|
export logToFile=${1}
|
||||||
}
|
}
|
||||||
|
|
||||||
debug() {
|
debug() {
|
||||||
[[ -z ${debugFlagToFile+x} || $debugFlagToFile = true ]] && tee -a CocoRice.log > /dev/null
|
[[ -z ${logToFile+x} || $logToFile = true ]] && tee -a CocoRice.log > /dev/null
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue