getopts is a Bourne/POSIX shell builtin for parsing command-line options, available in ash, bash, dash, ksh, zsh, ... on Linux and other Unix systems.

learn more… | top users | synonyms

1
vote
1answer
33 views

Can someone explain this short getopts bash script in plain english? (UNIX)

This is the script: file=$1 while getopts ":ivr" opt; do case $opt in i) iopt=1;; v) vopt=1;; r) ropt=1;; \?)echo "invalid option: -$OPTARG" > esac done shift $(($OPTIND-1)) So the only part I ...
1
vote
1answer
19 views

make getopts error when optionstring does not start with a dash

I am writing a script that uses getopts for options that require arguments and some that do not. I want getopts to exit with an error if any switches do not start with a '-', rather than simply stop ...
0
votes
2answers
29 views

bash script getopts does not recognize question mark

I am currently parsing options in a script like that: while getopts ":ia" OptionArgument; do case $OptionArgument in i ) echo "bli";; a ) echo "bla";; * ) echo "flag not known";; ? ) ...
0
votes
3answers
59 views

BASH getopts optional arguments

I'm trying to create a shell script that has two mandatory arguments (arg1, arg2) and then an optional -b flag plus the argument that needs to follow should the user choose to use the flag. Let me ...
1
vote
2answers
48 views

using getopts inside a bash function

EDIT: corrected my code snippet to try $OPTARG, to no avail EDIT#2: OK turns out the code is fine, my shell was somehow messed up. Opening a new window solved it. The arg value was indeed in ...
2
votes
2answers
55 views

getopts no argument provided

how to check whether there was no required argument provided? I found that ":" option in switch case should be sufficient for this purpose, but it never enters that case (codeblock). It doesn't matter ...
0
votes
1answer
15 views

poptGetArgs return null.

I am using poptGetArgs to read multiple values for single option. But it always give null as return value. I posted my code below. please help me to resolve if it has any error. int main(int argc, ...
0
votes
1answer
147 views

Multiple option arguments using getopts (bash)

I am trying to process command line arguments using getopts in bash. One of the requirements is for the processing of an arbitrary number of option arguments (without the use of quotes). 1st example ...
0
votes
1answer
32 views

getopts treats an option as argument of a previous one

I've the following script: #!/bin/bash USER="NONE" LOST=0 AVG=0 while getopts ":pmu:" OPTION; do case $OPTION in u) USER=$OPTARG ;; p) LOST=1 ...
0
votes
3answers
87 views

bash getops not passing email or ip address

I've been banging my head on this one for a bit. Wanted to see what I'm doing wrong, and it's probably all me on this one. I'm pinging an IP, then when it goes down or up, it will send a notification. ...
0
votes
1answer
38 views

Errors using getopts on cygwin

I am trying to use getopts on cygwin in a bash script. The following is the code: #!/bin/bash # Sample program to deal with getopts. echo "Number of input arguments = $#"; i=0; while [ ${i} -lt ...
1
vote
2answers
82 views

How can I suppress warning messages emitted by Getopt::Std::getopts?

I have short script test.pl #!/usr/bin/perl use locale; use encoding 'utf-8'; use Getopt::Std; getopts("dei") or print STDERR "TRALALALALA\n"; print"@ARGV\n"; I need to suppress Unknown option: ...
1
vote
1answer
66 views

Bash: more than one arguments for each flag

What I want to do is something like $ ./my-script -a file1 file2 file3 -d file4 file5 file6 -r file7 file8 or $ ./my-script -a *.txt -d src1/*.tex sr2/*.tex However, it seems getopts only ...
1
vote
4answers
168 views

Add usage content in shell script without getopts

I have script where i need to display usage command in case user miss any mandatory information while executing script. Usage : Script -s <server> -i <instance> -u <user> -p ...
0
votes
4answers
87 views

How to sort a file with a bash script using sort and getopts?

This is my bash script that sorts a file by columns. while getopts "123456" flag do sort -t: -k $flag names.txt done Right now it does exactly what I need, but I need to have the filename be a ...
0
votes
1answer
164 views

Best way to parse cmdline args - BASH?

After several days of research, I still can't figure out the best method for parsing cmdline args in a .sh script. According to my references the getopts cmd is the way to go since it "extracts and ...
0
votes
1answer
73 views

How to check for extra parameters in ash script?

I have an ash script where I need to check whether the user has entered anything stupid. The proper use is: script <read | monitor> -s <system | event> [-f filter] [-n number] And I ...
1
vote
1answer
78 views

Syntax shell scripting? “word unexpected in” getopts

Good evening everybody, We're looking forward to execute a shell script on an Ubuntu 8.04, But it returns a special error: line 14: Word unexpected (expecting "in") So here is a preview of the ...
2
votes
1answer
52 views

Providing opts to piped bash script

I am trying to provide opts to a bash script when piping the script contents to bash for execution. #!/bin/bash SETUP_PACKAGES="" while getopts ":u:" opt; do case $opt in p) if [[ ...
2
votes
1answer
201 views

How variable OPTIND works in shell builtin getopts

My shell script is quite simple as the following. while getopts "abc:" flag; do echo "$flag" $OPTIND $OPTARG done And I do some testing as the following. ...
0
votes
2answers
93 views

Why does my shell script fail on second attempt?

This script should accept a set of search terms and return a formatted URL to search google. $ ./google_search.sh albert einstein https://www.google.com/search?q=albert+einstein It does that just ...
0
votes
1answer
77 views

Using getopts to grep a file and export it to a file: why is another parameter mentioned?

I use getopts to obtain a MAC address and grep that MAC address through log files. It looks like this: #!/bin/bash while getopts ":m:hx:" opt; do case $opt in m) cat ...
0
votes
1answer
107 views

Variable override in bash from command line

I've the following bash script. It calculates ax^2 + bx + c. Asks for a,b and c as you can see and gets x as a command line argument. echo "Enter a value for a: " read a echo "Enter a value for b: " ...
1
vote
2answers
109 views

BASH: How to create function that returns all script parameters as array

I'm kind of new in bash and I have a problem for which I'm unable to find solution anywhere on the internet. Before I do something like trying to program it by myself, I would like to see what is the ...
0
votes
1answer
67 views

getopts: optional $OPT_ARG

I am looking to create a script that can run both -u and -u gtest_filter= Currently I have while getopts u: opt 2> /dev/null; do case $opt in u) UNIT_TEST=1; UNIT_TEST_OPTION=$OPTARG ...
0
votes
1answer
99 views

Is this the correct way to write opts

Is this the correct way to get and set with OPTS? I want to be able to take in a lot of options like ./runthis.sh --option1 setuff --option2 setmorestuff while : do case $1 in ...
0
votes
1answer
103 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. ...
1
vote
3answers
361 views

How can I use long options with the Bash getopts builtin?

I am trying to parse a -temp option with Bash getopts. I'm calling my script like this: ./myscript -temp /foo/bar/someFile Here is the code I'm using to parse the options. while getopts ...
-2
votes
1answer
140 views

How to create a flag with getopts to run a command

I need help with my getopts, i want to be able to run this command ( mount command) only if i pass a flag ( -d in this case). below output is what i have on my script but it doesn't seem to work. ...
6
votes
1answer
4k views

bash getopts with multiple and mandatory options

Is it possible to use getopts to process multiple options together? For example, myscript -iR or myscript -irv. Also, I have a situation where based on a condition script would need mandatory option. ...
1
vote
1answer
163 views

flag to overwrite download url command

I am pretty new to shell scripting and I have to add a flag (getopts) to my script where I can overwrite download url command if the script can't reach the url for any reason. For instance, if I add ...
0
votes
2answers
180 views

How to have a positional argument before options in a shell script?

I want to have a shell script that takes a file name as first positional argument followed by options (./test.sh <file> [options]). However, getopts doesn't work when I give a positional ...
1
vote
0answers
55 views

GETOPTS passing option to create find function

Im trying desperately finding the solution for my Getopts For example #!/bin/bash while getopts ":a:b:" opt; do case $opt in a) find / $OPTARG >&2 ;; b) 2>/dev/null >&2 ;; ...
0
votes
1answer
210 views

How can I prevent an option that requires an argument to use the next option when no argument is given?

I have the following code in test.sh: while getopts "f:i:" opt; do case $opt in f) echo $OPTARG i) echo $OPTARG Now if I run ./test.sh -f I will get the error: option requires an ...
1
vote
1answer
155 views

bash getopts cuts out if the argument is a filename?

I'm working on a script with getopts and the command can have arguments in any order, both valid arguments like -a and filenames like stuff.txt. The problem is, when I run a command like this: ...
-2
votes
1answer
112 views

How can I get getopts source?

My embedded device uses busybox and it only has getopt. I wanted to port getopts to my embedded device and was looking for getopts source to do that. Where can I find getopts source?
1
vote
2answers
2k views

Bash getopts command

I am following IBM's example from their website: (listing #5) http://www.ibm.com/developerworks/library/l-bash-parameters/index.html #!/bin/bash echo "OPTIND starts at $OPTIND" while getopts ":pq:" ...
2
votes
3answers
2k views

getopts printing help when no cmd. line argument was matched

I'm trying to use getopts in bash to parse command line arguments, but I couldn't figure out how to implement "default" action, if no argument was matched (or no cmdline argument given). This is ...
0
votes
2answers
259 views

Bash getopts dropping last argument

So, I'm trying my hand at using bash's built-in getopts to handle argument processing except I'm getting a strange result. Here's my test script; #!/bin/sh HOST= OWNER= GROUP= while getopts "h:o:g" ...
1
vote
1answer
536 views

parse arguments after getopts

I want to call a bash script like this $ ./scriptName -o -p -t something path/to/file This is as far as I get #!/bin/bash o=false p=false while getopts ":opt:" options do case $options in ...
1
vote
1answer
157 views

getopts truncates argument value

I need to pass a string value containing spaced as option in myscript.sh The code looks like this: while getopts "m:i:t:" OPTION do case $OPTION in m) M=$OPTARG echo M: $M ...
0
votes
1answer
450 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 ...
2
votes
2answers
2k 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
389 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" ...
1
vote
2answers
963 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 ;; ...
0
votes
2answers
405 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 ...
1
vote
1answer
333 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
2answers
883 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 ...
7
votes
4answers
6k 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 ...
1
vote
1answer
6k 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 ...

1 2