Tagged Questions
50
votes
14answers
58k views
Using getopts in bash shell script to get long and short command line options
I wish to have long and short forms of command line options invoked using my shell script.
I know that getopts can be used, but like in Perl, I have not been able to do the same with shell.
Any ideas ...
0
votes
1answer
223 views
how to use getopt(s) as technique for passing in argument in bash
Can someone show me an example how to use getopts properly or any other technique that I would be able to pass in an argument? I am trying to write this in unix shell/bash. I am seeing there is getopt ...
0
votes
2answers
132 views
Is there a way to have a string as a switch using getopts?
I am seeing if there is a way for getopts to handle switches with strings instead of characters.
For example, I would like to supply something like this:
script.ksh -file1 file1.txt -file2.txt
...