Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
bashの場合:コマンドを入力します:</ p>
getopt -l name,data -- --namd
出力は
-- name,pp -- --namd
入力:
getopt -l name,data -- --name
出力も
-- name,pp -- --name
入力したときにエラーが表示されないのはなぜgetopt -l name,data -- --namdですか?
問題は、Mac では、getopt が gnu ベースの getopt ではなく、BSD ベースの getopt であることです。
長いオプションを理解していません。それは「うまくいかない」ということではなく、あなたが求めたように設計されていないということです。