Shell Scripting for Humans (072): Using named arguments in your scripts

preview_player
Показать описание
Arguments are useful as-is, but they are easier to understand when you give them a name.
Рекомендации по теме
Комментарии
Автор

what if i want to have unordered named arguments like;
script.sh -arg1 hello -arg2 world
but i get the same result if i do
script.sh -arg2 world arg1 hello

plusquare