Tagged Questions
0
votes
1answer
105 views
working with options in bash code [duplicate]
Possible Duplicate:
Using getopts in bash shell script to get long and short command line options
I'm trying to figure out how to make use of flag like -e/--email -h/--help for example.
...
9
votes
2answers
7k views
How to support both short and long options at the same time in bash?
I want to support both short and long options in bash scripts, so one can:
$ foo -ax --long-key val -b -y SOME FILE NAMES
is it possible?