如果传递了诸如“-y”或“--yes”之类的特定参数,我想让脚本成为非交互式并跳过用户确认。我还想知道如何将参数传递给我来源的其他脚本。
SHORT=yq
LONG=yes,quick
PARSED=$(getopt --options $SHORT --longoptions $LONG --name "$0" -- "$@")
eval set -- "$PARSED"
q=0; autoConfirm=0
while true; do
case "$1" in
-q|--quick)
q=1
shift
;;
-y|--yes)
autoConfirm=1
shift
;;
--)
shift
break
;;
*)
echo "Invalid option. Use -h for help"
exit 3
;;
esac
done
assertConfirmation () {
local promptMsg=$1 autoConfirm=$2
if (( autoConfirm )); then
return
else
clear
read -n 1 -p "$promptMsg (yes/No) "
printf '\n========================================================================'
if [[ $REPLY =~ ^([Yy])$ ]]; then
return
fi
fi
return 1
}
if assertConfirmation "Install this?" "${autoConfirm:?}"; then
install
fi
source installation "${autoConfirm:?}" "${q:?}"
答案1
这取决于您的安装脚本的期望。为了让事情简单,最好让它接受-y
and-q
作为参数。这样,您可以更改 case 语句,将q
和autoConfirm
设置为-q
and-y
而不是 1(默认情况下为 null),并将安装脚本调用为:
source installation $autoConfirm $q
进行此更改后,请使用[[ $autoconfirm ]]
检查它是否已设置,而不是(( autoConfirm ))
.