Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
26
votes
3answers
4k views

Why use argparse rather than optparse?

I noticed that the Python 2.7 documentation includes yet another command-line parsing module. In addition to getopt and optparse we now have argparse. Why has yet another command-line parsing module ...
19
votes
7answers
5k views

GetOpt library for C#

I'm looking for a getopt library for c#. So far I found a few (phpguru, XGetOptCS, getoptfordotnet) but these look more like unfinished attempts that only support a part of C's getopt. Is there a full ...
11
votes
3answers
976 views

How can I allow undefined options when parsing args with Getopt

If I have a command line like: my_script.pl -foo -WHATEVER My script knows about --foo, and I want Getopt to set variable $opt_foo, but I don't know anything about -WHATEVER. How can I tell Getopt ...
9
votes
1answer
3k views

getopt does not parse optional arguments to parameters

In C, getopt_long does not parse the optional arguments to command line parameters parameters. When I run the program, the optional argument is not recognized like the example run below. $ ./respond ...
5
votes
2answers
727 views

Processing multiple values for one single option using getopt/optparse?

My question: Is it possible to fetch multiple values for one option using getopt or optparse, as shown in the example below: ./hello_world -c arg1 arg2 arg3 -b arg4 arg5 arg6 arg7 Please note that ...
5
votes
2answers
312 views

Is there a package to process command line options in R?

Is there a package to process command-line options in R? I know commandArgs, but it's too basic. Its result is basically the equivalent to argc and argv in C, but I'd need something on top of that, ...
4
votes
2answers
39 views

Best practice for CLI utility help file

I've finished implementing a command-line utility that parses arguments via getopt_long. To wrap things up, I need to implement a -h or --help switch that will print out the list of arguments as well ...
4
votes
6answers
657 views

C++ and command line options

Is it bad form to use the GNU getopt in C++ programs? Is there a C++ specific alternative, or should I still just use getopt?
4
votes
3answers
541 views

Is Perl's GetOpt::Long accepting abbreviations of switches a bug?

This is a simple script I have written to test command line argument handling: use Getopt::Long; my $help = 0; GetOptions( 'help|h|?' => \$help, ) or die "Error!"; print "OK\n"; The results I ...
4
votes
5answers
3k views

getopt implementation suitable for proprietary C++ programs?

I'd like to use getopt in my C++ program, but the powers-that-be at my place don't want to use GPL or LGPL code (they're not that fond of Boost). Since getopt is licensed under the GPL (or is it the ...
3
votes
0answers
55 views

getopt_long could not be resolved in Eclipse CDT

Using the in a C++ program, Eclipse CDT marks getopt_long as "could not be resolved". The code compiles and runs fine using g++ program.cpp. Has this something to do with the Eclipse build set up?
3
votes
1answer
54 views

Handling command line options before and after an argument in C

So far I've been using getopt_long to parse options for a command line C program. Is there a way to stop getopt_long parsing when it hits a non-option argument? If not, what's the best way to handle ...
3
votes
2answers
791 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?
3
votes
2answers
203 views

Pass zero in to Getopt::Std

I am using Getopt::Std in a Perl script, and would like to pass in a zero as value. I am checking that values are set correctly using unless(). At the moment unless() is rejecting the value as being ...
3
votes
4answers
1k views

Is there anyway to persuade python's getopt to handle optional paramters to options?

According to the documentation on python's getopt (I think) the options fields should behave as the getopt() function. However I can't seem to enable optional parameters to my code: #!/usr/bin/python ...
3
votes
1answer
1k views

In Ruby, getoptlong destructively parses ARGV. Is there a way around this?

I need to invoke getoptlong multiple times, but after the first time ARGV is empty.
2
votes
3answers
104 views

What's the difference between argp and getopt?

I think the title is self explanatory. I am making a program and I was wondering what I should use of the two and why.
2
votes
1answer
74 views

usage function doesn't work with getopt

I have a problem with a usage function in Python. This is a part of my main function: def main(argv): try: opts, args = getopt.getopt(argv, 'hi:o:tbpms:', ['help', 'input=', ...
2
votes
1answer
147 views

getopt compatibility across platforms

I am currently writing a simple program in C, which can accept numeric command line arguments. But I also want it to have command line options. I've noticed an inconsistency across different operating ...
2
votes
4answers
615 views

Do you have a good Perl template script?

I do a lot of programming in Perl and was wondering if people had a "default" template Perl script that they use and willing to share. I started copying one of my older scripts which has Getopt ...
2
votes
2answers
435 views

Can optparse skip unknown options, to be processed later in a ruby program?

Is there any way to kick off optparse several times in one Ruby program, each with different sets of options? Example: $ myscript.rb --subsys1opt a --subsys2opt b here, myscript.rb would use ...
2
votes
3answers
316 views

C getopt -<integer>

How do I get the option -10 from command line arguments- "tail -10". getopt function finds '1' character. But how do I access the string "10"? If this can be done by getopt_long, an example would ...
2
votes
2answers
164 views

How to handle main option with Getopt

I want to handle a feature which seems to me almost natural with programs, and I don't know how to handle it with Getopt perl package (no matter Std ot Long). I would like something like: ...
2
votes
2answers
135 views

How to process python generated error messages my own way?

For some code as follows, opts, args = getopt.getopt(sys.argv[1:], "c:", ... for o,v in opts: ... elif o in ("-c", "--%s" % checkString): kCheckOnly = True ...
2
votes
3answers
1k views

PHP getopt Operations

This question is regarding getopt function in php. I need to pass two parameter to the php scripts like php script.php -f filename -t filetype Now depending upon the file type which can be u, c or ...
2
votes
4answers
5k views

Using getopt to parse program arguments in c++

I have a program which takes various command line arguments. For the sake of simplification, we will say it takes 3 flags: -a, -b, and -c and use the following code to parse my arguments int ...
2
votes
2answers
810 views

How can I set default values using Getopt::Std?

I am trying to collect the values from command line using Getopt::Std in my Perl script. use Getopt::Std; $Getopt::Std::STANDARD_HELP_VERSION = 1; getopts('i:o:p:'); my $inputfile = our $opt_i; my ...
2
votes
5answers
1k views

Command line options with optional arguments in Python

I was wondering if there's a simple way to parse command line options having optional arguments in Python. For example, I'd like to be able to call a script two ways: > script.py --foo > ...
2
votes
1answer
805 views

How does Getopt::Std handle spaces in arguments on the command line?

I've been playing around with the Getopt::Std module and was wondering about arguments taking spaces. I have this code atm: getopts('dp:h', \%options); The problem is, that if the argument ...
2
votes
3answers
2k views

Get optarg as a C++ string object

I am using getopt_long to process command line arguments in a C++ application. The examples all show something like printf("Username: %s\n", optarg) in the processing examples. This is great for ...
2
votes
3answers
1k views

command line processing library - getopt

Can someone help me with the getopt fuction? When i do the following in main: char *argv1[] = {"testexec","-?"}; char *argv2[] = {"testexec","-m","arg1"}; int cOption; /* test for -? */ ...
2
votes
5answers
694 views

How to get options in the order entered by the user, using Perl's Getopt::Long?

I have an existing Perl program that uses Getopt package and Getopt::Long::Configure with permute as one of the options. However, now I need to keep the order of the options entered by the user. There ...
1
vote
2answers
67 views

Supplying two arguments to command line option using getopt

is there an alternative way to pass two arguments to an option as a single string when using getopt ? Normally I would do the following: ./command -o "key value" [command arguments] Then I would ...
1
vote
2answers
88 views

Python getopt() in __main__

I'm a Python beginner and have successfully gotten my first program with CLI parameters passed in to run. Got lots of help from this Handling command line options. My question is: Why in Example ...
1
vote
3answers
63 views

how can I read a command line argument using getopt? [closed]

I would like to get a string passed in by the user on the command line. The string is basically a specific argv element I'm trying to get. For example: on linux when the user types in > ...
1
vote
2answers
64 views

Get raw input as an option?

So I'm fairly new to python in general, mostly use it to move files around easily, and what I've been doing lately was using raw_input to get a name to pass on as a directory name variable. But I say ...
1
vote
2answers
88 views

getopt ignores all arguments if an unnamed argument precedes named arguments (“./foo unnamed -n named”)

I'm trying to understand why getopt seems to ignore all arguments if an "unnnamed" argument precedes any named arguments. Using an example from http://wiki.bash-hackers.org/howto/getopts_tutorial, ...
1
vote
1answer
110 views

Parsing arguments/options/flags in a bash script

I am trying to parse an option in a bash script. how can I use getopts to see whether an optional flag has been entered. FILE1=$1 FILE2=$2 outputfile='' while getopts "o" OPTION do case $OPTION ...
1
vote
1answer
127 views

getopt_long() function with custom argc and argv

I am having trouble using getopt_long() function with custom argc and argv. I receive my arguments in a string instead of the real command line args. Then a new_argc and new_argv was built from this ...
1
vote
2answers
127 views

Trapping getopt invalid options

I'm using getopt (not getops) to provide the ability for my bash script to process options and switches (both long --option and short -o forms). I'd like to be able to trap invalid options and handle ...
1
vote
2answers
167 views

help with perl script converting use of argv to using getopts

I am trying to convert the use of @ARGV with using Getopt::Std instead in my perl script. I am getting some substr errors and need some help figuring this out. Errors: Use of uninitialized value in ...
1
vote
1answer
76 views

How to parametrize verbosity of debug output (BASH)?

During the process of writing a script, I will use the command's output in varying ways, and to different degrees - in order to troubleshoot the task at hand.. For example, in this snippet, which ...
1
vote
1answer
160 views

getopt value stays null

I am passing my program inputs and I could see them in argv but getopt doesnt seem to have the argument that I expect. This is how I run my prog: ./my_prog -X -f filename <snip> while ((opt = ...
1
vote
0answers
133 views

getopt error numeric constant

I have the following error coming from getopt.h using gcc on ubuntu 10.10. Error In file included from ../include/cmdline.h:20, from cmdline.cpp:15: /usr/include/getopt.h:175: error: ...
1
vote
2answers
117 views

Turn off abbreviation in getopt_long (optarg.h)?

Is it possible to turn off abbreviation in getopt_long()? From the man page: Long option names may be abbreviated if the abbreviation is unique or is an exact match for >some defined option. I ...
1
vote
7answers
1k views

how to take integers as command line arguments?

I've read a getopt() example but it doesn't show how to accept integers as argument options, like cvalue would be in the code from the example: #include <ctype.h> #include <stdio.h> ...
1
vote
1answer
182 views

parsing command option with default values and range constraints in C

I need to parse command line arguments in C. My arguments are basically int or float with default values and range constrains. I've started to implement something that look like this: ...
1
vote
4answers
492 views

How to group the arguments while using GetOpt in Perl?

To a perl script that I am writing, there can be a lot (~50) of command line options provided. Most of them are optional, so a call will have only some of the options provided. I am using ...
1
vote
2answers
460 views

How to make a multi-character parameter in UNIX using getopt?

I'm trying to make a getopt command such that when I pass the "-ab" parameter to a script, that script will treat -ab as a single parameter. #!/bin/sh args=`getopt "ab":fc:d $*` set -- $args for i in ...

1 2