名前付きパラメーターをシェルスクリプトに渡す(受け取る)簡単な方法はありますか?
例えば、
my_script -p_out '/some/path' -arg_1 '5'
そして内部でmy_script.sh
それらを受け取ります:
# I believe this notation does not work, but is there anything close to it?
p_out=$ARGUMENTS['p_out']
arg1=$ARGUMENTS['arg_1']
printf "The Argument p_out is %s" "$p_out"
printf "The Argument arg_1 is %s" "$arg1"
これはBashまたはZshで可能ですか?