getopts does not seem to work
up vote
1
down vote
favorite
I am trying to run the following script using getopts
to parse the options but it does not seem to work:
#!/bin/bash
set -x
echo $@
while getopts "rf" opt
do
case "${opt}" in
r)
ropt=${OPTARG}
;;
f)
fopt=${OPTARG}
;;
esac
done
shift $((OPTIND -1))
echo $fopt $ropt
The output I get is:
$ ./myscript.sh -f opt2 -r opt1
+ echo -f opt2 -r opt1
-f opt2 -r opt1
+ getopts rf opt
+ case "${opt}" in
+ fopt=
+ getopts rf opt
+ shift 1
+ echo
+ set +x
Do you have any ideas on what am I doing wrong?
bash getopts
add a comment |
up vote
1
down vote
favorite
I am trying to run the following script using getopts
to parse the options but it does not seem to work:
#!/bin/bash
set -x
echo $@
while getopts "rf" opt
do
case "${opt}" in
r)
ropt=${OPTARG}
;;
f)
fopt=${OPTARG}
;;
esac
done
shift $((OPTIND -1))
echo $fopt $ropt
The output I get is:
$ ./myscript.sh -f opt2 -r opt1
+ echo -f opt2 -r opt1
-f opt2 -r opt1
+ getopts rf opt
+ case "${opt}" in
+ fopt=
+ getopts rf opt
+ shift 1
+ echo
+ set +x
Do you have any ideas on what am I doing wrong?
bash getopts
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I am trying to run the following script using getopts
to parse the options but it does not seem to work:
#!/bin/bash
set -x
echo $@
while getopts "rf" opt
do
case "${opt}" in
r)
ropt=${OPTARG}
;;
f)
fopt=${OPTARG}
;;
esac
done
shift $((OPTIND -1))
echo $fopt $ropt
The output I get is:
$ ./myscript.sh -f opt2 -r opt1
+ echo -f opt2 -r opt1
-f opt2 -r opt1
+ getopts rf opt
+ case "${opt}" in
+ fopt=
+ getopts rf opt
+ shift 1
+ echo
+ set +x
Do you have any ideas on what am I doing wrong?
bash getopts
I am trying to run the following script using getopts
to parse the options but it does not seem to work:
#!/bin/bash
set -x
echo $@
while getopts "rf" opt
do
case "${opt}" in
r)
ropt=${OPTARG}
;;
f)
fopt=${OPTARG}
;;
esac
done
shift $((OPTIND -1))
echo $fopt $ropt
The output I get is:
$ ./myscript.sh -f opt2 -r opt1
+ echo -f opt2 -r opt1
-f opt2 -r opt1
+ getopts rf opt
+ case "${opt}" in
+ fopt=
+ getopts rf opt
+ shift 1
+ echo
+ set +x
Do you have any ideas on what am I doing wrong?
bash getopts
bash getopts
edited 30 mins ago
Kusalananda
119k16223365
119k16223365
asked 1 hour ago
trikelef
14418
14418
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
4
down vote
accepted
You expect your options to take option-arguments, but you don't let getopts
know about this.
You should use
while getopts "r:f:" opt; do ...; done
i.e., each option that takes an argument should have :
after it in the argument string to getopts
.
You'll probably also want a default case
branch at the end to handle invalid options:
*) usage >&2
exit 1
(the error message (about invalid option or missing option argument) will be displayed by getopts
itself, usage
is expected to be a function that you will have defined that prints a short help message to standard output).
Also, don't forget to double quote all expansions, even $(( OPTIND - 1 ))
.
Related to that last point:
- When is double-quoting necessary?
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
You expect your options to take option-arguments, but you don't let getopts
know about this.
You should use
while getopts "r:f:" opt; do ...; done
i.e., each option that takes an argument should have :
after it in the argument string to getopts
.
You'll probably also want a default case
branch at the end to handle invalid options:
*) usage >&2
exit 1
(the error message (about invalid option or missing option argument) will be displayed by getopts
itself, usage
is expected to be a function that you will have defined that prints a short help message to standard output).
Also, don't forget to double quote all expansions, even $(( OPTIND - 1 ))
.
Related to that last point:
- When is double-quoting necessary?
add a comment |
up vote
4
down vote
accepted
You expect your options to take option-arguments, but you don't let getopts
know about this.
You should use
while getopts "r:f:" opt; do ...; done
i.e., each option that takes an argument should have :
after it in the argument string to getopts
.
You'll probably also want a default case
branch at the end to handle invalid options:
*) usage >&2
exit 1
(the error message (about invalid option or missing option argument) will be displayed by getopts
itself, usage
is expected to be a function that you will have defined that prints a short help message to standard output).
Also, don't forget to double quote all expansions, even $(( OPTIND - 1 ))
.
Related to that last point:
- When is double-quoting necessary?
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
You expect your options to take option-arguments, but you don't let getopts
know about this.
You should use
while getopts "r:f:" opt; do ...; done
i.e., each option that takes an argument should have :
after it in the argument string to getopts
.
You'll probably also want a default case
branch at the end to handle invalid options:
*) usage >&2
exit 1
(the error message (about invalid option or missing option argument) will be displayed by getopts
itself, usage
is expected to be a function that you will have defined that prints a short help message to standard output).
Also, don't forget to double quote all expansions, even $(( OPTIND - 1 ))
.
Related to that last point:
- When is double-quoting necessary?
You expect your options to take option-arguments, but you don't let getopts
know about this.
You should use
while getopts "r:f:" opt; do ...; done
i.e., each option that takes an argument should have :
after it in the argument string to getopts
.
You'll probably also want a default case
branch at the end to handle invalid options:
*) usage >&2
exit 1
(the error message (about invalid option or missing option argument) will be displayed by getopts
itself, usage
is expected to be a function that you will have defined that prints a short help message to standard output).
Also, don't forget to double quote all expansions, even $(( OPTIND - 1 ))
.
Related to that last point:
- When is double-quoting necessary?
edited 17 mins ago
answered 1 hour ago
Kusalananda
119k16223365
119k16223365
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f487548%2fgetopts-does-not-seem-to-work%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown