Ho uno script bash come sotto in un file nepleaks_upd.sh
, che voglio eseguire come ./nepleaks_upd.sh bootstrap --branch off
. Non ce la facevo --branch
, ma ciò che funziona è ./nepleaks_upd.sh bootstrap -b off
.
usage() { echo "Usage: $0 [prepare | up | down] [-b <on/off>]" 1>&2; exit 1; }
case "$1" in
bootstrap)
while getopts ":b:" o; do
case "${o}" in
b)
b=${OPTARG}
if [ ${b} == "off" ]; then
echo "git clone https://github.com/iPrayag/dotfiles.git"
## logic
fi
;;
*)
echo ${o}
usage
;;
esac
done
shift $((OPTIND-1))
echo "option1 = ${o}"
echo "option2 = ${b}"
if [ -z "${b}" ]; then
usage
fi
;;
up)
echo "up"
##logic
;;
down)
echo "down"
##logic
;;
*)
echo "Usage: $0 {up | down} dev"
exit 1
;;
esac
Senza prima case .. in .... esac
, funziona benissimo. Con case ... in ... esac
, offre un'opzione vuota per -b
,
$ ./nepleaks_upd.sh bootstrap -b off
option1 = ?
option2 =
Usage: ./nepleaks_upd.sh [bootstrap | up | down] [-b <on/off>]
case .. in .... esac
, funziona bene"? Vuoi dire che le righe 5-25 vengono analizzate ./nepleaks_upd.sh -b off
correttamente? Forse hai bisogno di un shift
, quindi getopts
non soffocare il " bootstrap
".
$1
?