Refactor and support long comm line options

This commit is contained in:
Santiago Lo Coco 2022-01-14 00:03:10 -03:00
parent 2dd559bec1
commit 6603a539a9
2 changed files with 17 additions and 17 deletions

View File

@ -3,38 +3,38 @@
usage() {
cat << EOF
usage: ${0##*/} [command]
-h Print this help message.
-w Use whiptail.
-d Use dialog.
-l Log to CocoRice.log file.
-h | --help Print this help message.
-d | --dialog Use dialog.
-l | --log Log to CocoRice.log file.
EOF
}
checkParameters() {
local counter=0
while getopts ':hwdfp' flag; do
case $flag in
h)
while [ -n "$1" ]; do
case $1 in
-h | --help)
usage
exit 0
;;
d)
-d | --dialog)
echo "dialog"
checkForDependencies "dialog"
setDialogBox "dialog"
;;
f)
-l | --log)
checkForDependencies "libnewt"
setDialogBox "whiptail"
setDebugToFile true
setLogToFile true
;;
p)
-p | --packages)
installPackages=true
;;
?)
printf '%s: invalid option -%s\n' "${0##*/}" "$OPTARG"
*)
printf '%s: invalid option %s\n' "${0##*/}" "$1"
exit 1
;;
esac
shift
done
if [ -z "$(getDialogBox)" ]; then

View File

@ -163,10 +163,10 @@ getDialogBox() {
echo "$dialogBox"
}
setDebugToFile() {
export debugFlagToFile=${1}
setLogToFile() {
export logToFile=${1}
}
debug() {
[[ -z ${debugFlagToFile+x} || $debugFlagToFile = true ]] && tee -a CocoRice.log > /dev/null
[[ -z ${logToFile+x} || $logToFile = true ]] && tee -a CocoRice.log > /dev/null
}