Tagged Questions
The getopts tag has no wiki summary.
49
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 ...
3
votes
2answers
104 views
How do I separate the first argument from that of getopts?
#!/bin/bash
priority=false
it=0
dir=/
while getopts "p:i" option
do
case $option in
i) it=$OPTARG;;
p) priority=true;;
esac
done
if [[ ${@:$OPTIND} != "" ]]
then
...
2
votes
3answers
334 views
BASH: getopts retrieving multiple variables from one flag
I am stuck and need your guys help with with getops
I created a bash script which looks like this when run:
$ foo.sh -i env -d directory -s subdirectory -f file
It works correctly when handling one ...
2
votes
2answers
461 views
How to handle shell getopts with parameter containing blank spaces
I'm looking for a way to handle arguments containing blank spaces that has to be parsed
by shell getopts command.
while getopts ":a:i:o:e:v:u:" arg
do
echo "ARG is: $arg" >> ...
1
vote
2answers
73 views
getopts not working - bash
I am writing a bash script which accept parameters. I am using getopts to achieve it.
#!/bin/bash
while getopts ":a" opt; do
case $opt in
a)
echo "-a was triggered!" >&2
;;
...
1
vote
1answer
67 views
How to get the agrument after the command using GETOPTS in BASH
Example of script usage
./myscript --p 1984 --n someName
#!/bin/bash
while getopts :npr opt
do
case $opt in
n ) echo name= ??? ;;
p ) echo port= ??? ;;
...
1
vote
3answers
208 views
How to wrap another shell still passing $OPTIND as-is?
I'm trying to wrap a bash script b with a script a.
However I want to pass the options passed to a also to b as they are.
#!/bin/bash
# script a
./b ${@:$OPTIND}
This will also print $1 (if ...
1
vote
3answers
333 views
What is the best way to check the getopts status in bash?
I am using following script :
#!/bin/bash
#script to print quality of man
#unnikrishnan 24/Nov/2010
shopt -s -o nounset
declare -rx SCRIPT=${0##*/}
declare -r OPTSTRING="hm:q:"
declare SWITCH
...
1
vote
3answers
587 views
Parsing getopts in bash
I've got a bash function that I'm trying to use getopts with and am having some trouble.
The function is designed to be called by itself (getch), with an optional -s flag (getch -s), or with an ...
0
votes
1answer
52 views
How do I use a wildcard with a getopts in a bash script?
I have a bash script that I want to take some optional input arguments, followed by either a filename or a file specification containing wildcards.
If I run
getopts_problem.sh -td *.txt
the ...
0
votes
2answers
41 views
Using getopt_long (C++) how do I code up a long & short option to both require arguments?
#include <iostream>
#include <getopt.h>
#define no_argument 0
#define required_argument 1
#define optional_argument 2
int main(int argc, char * argv[])
{
std::cout << "Hello" ...
0
votes
1answer
62 views
POSIX getopts refuses to acknowledge numeric $OPTARG value
I'm using getopts to parse options for a custom script running under bash.
The code to achieve this is very standard:
while getopts :s: opt; do
case $opt in
s)
echo "\$OPTARG is $OPTARG"
...
0
votes
2answers
101 views
Bash: getopts passes a flag as wrong argument
I am trying to run a command that has multiple arguments. The command syntax is like so:
./foo -d directory -f file -v version app1 app2 app3 (this situation works)
However if I put the -v version ...
0
votes
2answers
88 views
How do you use getopts?
what is the easiest, most straight forward, way to use getopts in bash script.
if i have a script called: myscript and it CAN take the the arguments: -p -r -s -x
if argument x then exit
if argument ...
0
votes
1answer
216 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
189 views
getopts won't call twice in a row?
For some reason the options work fine the first call of lib_progress_bar -c "@" -u "_" 0 100, but on the second call and beyond everything is default because it seems like getopts c:u:d:p:s:%:m: flag ...
0
votes
1answer
227 views
getopts for Windows batch files?
Is there an easy way to detect options/switches passed in to a batch file via the command line? I'm looking for something along the lines of sh's and bash's getopts.
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
...
0
votes
2answers
554 views
getopts Values class and Template.Substitute don't (immediately) work together
I have python code something like:
from string import Template
import optparse
def main():
usage = "usage: %prog options outputname"
p = optparse.OptionParser(usage)
p.add_option('--optiona', ...
0
votes
1answer
1k views
Using getopts within user-defined-function in bourne shell
Is it possible to pass command line arguments into a function from within a bourne script, in order to allow getopts to process them.
The rest of my script is nicely packed into functions, but it's ...