私の Bash-Script は、引数とオプションを受け入れる必要があります。さらに、引数とオプションは別のスクリプトに渡す必要があります。
私が解決した2番目の部分:
for argument in "$@"; do
options $argument
done
another_script $ox $arguments
function options {
case "$1" in
-x) selection=1
-y) selection=2
-h|--help) help_message;;
-*) ox="$ox $1";;
*) arguments="$arguments $1";;
esac
}
ユーザーがテキストを指定できる引数「-t」を実装する方法がわかりません
次のようになります。
function options {
case "$1" in
-t) user_text=[ENTERED TEXT FOR OPTION T]
-x) selection=1
-y) selection=2
-h|--help) help_message;;
-*) ox="$ox $1";;
*) arguments="$arguments $1";;
esac
}