명명 된 매개 변수를 쉘 스크립트로 전달 (수신)하는 쉬운 방법이 있습니까?
예를 들어
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에서 가능합니까?