Tagged Questions
Getopt::Long is a command line switch parsing library for Perl.
11
votes
3answers
987 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 ...
7
votes
5answers
1k views
How do I parse a string with GetOpt::Long::GetOptions?
I have a string with possible command line arguments (using an Read-Eval-Print-Loop program) and I want it to be parsed similar to the command line arguments when passed to Getopt::Long.
To ...
6
votes
2answers
691 views
Where does getopt_long store an unrecognized option?
When getopt or getopt_long encounters an illegal option, it stores the offending option character in optopt. When the illegal option is a long option, where can I find out what the option was? And ...
5
votes
1answer
178 views
Why does my Perl program print the help message when an arguments has 0 as a value?
If i do this:
GetOptions(
'u=s' => \$in_username,
'r=i' => \$in_readonly,
'b=i' => \$in_backup
);
exit usage() unless $in_username && $in_readonly && ...
4
votes
1answer
121 views
Detecting ambiguous options with Getopt::Long
Is there an easy way to detect ambiguous options with the Perl module Getopt::Long?
For example:
#!/usr/bin/env perl
# test ambiguous options
use Getopt::Long;
my $hostname = 'localhost';
...
4
votes
6answers
2k views
Can Perl's Getopt::Long parse arguments I don't define ahead of time?
I know how to use Perl's Getopt::Long, but I'm not sure how I can configure it to accept any "--key=value" pair that hasn't been explicitly defined and stick it in a hash. In other words, I don't know ...
3
votes
1answer
59 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
393 views
Mandatory options with getopt_long() in C
With C/ C++, getopt_long() can be used to parse command line arguments. Is it possible to tell the function that some of the options are mandatory? For example, how can I tell getopt_long that the ...
3
votes
2answers
797 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
251 views
How to use Getopt::Long method?
How can I use Getopt::Long method if the input command execution is like this:
$ testcmd -option check ARG1 ARG2 ARG3
or
$ testcmd ARG1 ARG2 ARG3
3
votes
3answers
331 views
How can I handle -r=<pattern> with Perl's Getopt::Long?
I am parsing command line options in Perl using Getopt::Long. I am forced to use prefix - (one dash) for short commands (-s) and -- (double dash) for long commands (e.g., --input=file).
My problem is ...
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
...
2
votes
2answers
69 views
Use Getopt::Long in Perl to get multidimensional data structures
I got this code below to work as I need, but would like to know if there's a better way of doing this without quotes.
myScript.pl --filter 'key1 foo bar' --filter 'key2 baz qux'
...
2
votes
1answer
141 views
How can I access a Getopt::Long option's value in the option's sub?
My goal is to have a --override=f option that manipulates the values of two other options. The trick is figuring out how to refer to the option's value (the part matching the f in the =f designator) ...
2
votes
2answers
180 views
why struct option array needs an addtional dummy entry when using getopt_long
For example the option array is:
static struct option const long_options[] =
{
{"help", no_argument, 0, 'h'},
{"version", no_argument, 0, 'v'},
{0, 0, 0, 0}
};
Is it for padding?
2
votes
2answers
218 views
How can I make Perl's Getopt::Long not process a literal = in a parameter name?
I wrote a Perl program "transfer.pl" and the input parameter is the hash value (the key and the value are strings). The code segment is:
my %transfers = ();
if (!GetOptions("transfer=s" => ...
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 ...
1
vote
2answers
44 views
How can i handle arguments in c with getopt_long
i don't really understand how can i correctly handle command line arguments in c using getopt_long function, i create this code :
#include <stdio.h>
#include <stdlib.h>
#include ...
1
vote
2answers
88 views
Making Perl Getopt::Long keep the backslash ( \ ) in a string
One of my colleagues wrote a perl script that asks for the user's windows domain/user name, which of course we enter the the following format domainname\username. The Getopt:Long module then converts ...
1
vote
2answers
208 views
Can I call Getopts multiple times in perl?
I am a noob to perl, so please try to be patient with this question of mine.
It seems that if I make multiple calls to perl Getopts::Long::GetOpts method, the second call is completely ignored.
Is ...
1
vote
2answers
90 views
Should I expect POSIX to include getopt.h?
According to this, the POSIX library does not include getopt.h. However, I found this in unistd.h:
#ifdef __USE_POSIX2
/* Get definitions and prototypes for functions to process the
arguments in ...
1
vote
1answer
521 views
getoptlong ruby help
I need help using getoptlong class in Ruby. I need to execute command prog_name.ruby -u -i -s filename. So far I can only execute it with prog_name.ruby -u filename -i filename -s filename.
This is ...
1
vote
2answers
475 views
Perl Getopt::Long , supporting spaces for arguments
I have a perl script, which uses GetOpts long.A command like
automate -action build,deploy -modules chat,email,login
is easily handled.
What I want to achieve is, allow user to give spaces ...
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
3answers
203 views
Using Getopt::Long to drive a system command on linux
I am trying to execute a php script with arguments, using the following perl driver:
#!/opt/local/bin/perl
use strict;
use warnings;
use Getopt::Long;
use Cwd;
my %args = ();
GetOptions(
...
1
vote
1answer
163 views
getopt_long()/getopt() with duplicated option input
I just got to know both functions. Have been searching internet to learn their usage. Found one thing which is very important to parse the command line option input, but not discussed.
Is such a ...
1
vote
4answers
111 views
How to verify which flags were read using Getopt::Long in Perl?
myscript.pl
my $R;
my $f1 = "f1.log";
my $f2 = "f2.log";
my $f3 = "f3.log";
sub checkflags {
GetOptions('a=s' => \$f1,
'b=s' => \$f2,
'c=s' ...
1
vote
4answers
954 views
getopt_long vs getopt_long_only
to do a proper Linux/unix styled application, what is the best choice (eg. afaik ls uses getopt_long but for example ffmpeg getopt_long_only).
Which one do you recommend?
Cheers,
0
votes
2answers
41 views
How do I use getopt_long to parse multiple 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
2answers
42 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
4answers
104 views
How can I pass Getopt::Long options to a subroutine that's also an option?
I am trying to setup Getopt::Long to handle the arguments from a configuration script.
Here is my starter;
#!/usr/bin/perl
use strict;
use warnings;
use Getopt::Long;
my $config_file = '';
...
0
votes
1answer
53 views
Can ruby's GetOptLong process spaces in option arguments?
What I'm trying to do is pass an argument for an option in a ruby script that will be a unix command. The command may (probably will) involve greps, pipes and possible lots of other stuff. ...
0
votes
1answer
83 views
getopt_long problem
i have a problem with parsing arguments from a program that i'm writing, the code is below:
void parse_args(int argc, char** argv)
{
char ch;
int index = 0;
struct option options[] = { ...
0
votes
2answers
77 views
Getopt::Long getting a string with spaces into a variable
I'm making a perl script which uses Getopt::Long to parse command line arguments. However, I have an argument which can accept a string (with spaces). How can I get the whole string into a variable. ...
0
votes
3answers
195 views
How to use GetOptions utility to handle 'optional' command-line arguments in Perl?
There are many Perl tutorials explaining how to use GetOptions utility to process only the command-line arguments which are expected, else exit with an appropriate message.
In my requirement I have ...
0
votes
5answers
94 views
Can Getopt::Long accommodate variable option names?
I am writing a script that can do something like:
script-name --resource1=xxx --resource2=xxx
But this can go up to 50+. Is there a way to make GetOpt accept dynamic option names?
0
votes
1answer
162 views
Ruby GetoptLong modifies ARGV?
The documentation for Ruby's GetoptLong gave me the impression that it would remove the parsed options from ARGV. Here's the passage in question:
For example, if -a does not require an argument ...
0
votes
1answer
224 views
java gnu getopt - how to make it case insensitive?
I'm using gnu's getopt library for java. How can I make the long opts to be case insensitive? i.e. I want --switch to be treated like --Switch. The default behavior seems to be case sensitive, and I ...
0
votes
2answers
182 views
Perhaps a pointer problem. Linux program + libpcap + getopt_long() + C language
I'm making a network sniffer for my college project using the libpcap library. Majority of the code works without any problem, however, I'm stuck with the following issue. I've added five command line ...
0
votes
1answer
83 views
Is it possible to move backwards through a getopt_long argument list?
I would like to delegate to one of several possible lists of arguments based on whether particular arguments are present, along the lines of:
./test --do-thing-1 --option-A=7 --common-option ...
-1
votes
1answer
320 views
Ruby GetoptLong how do I parse comma separated arguments?
How can i parse arguments separated by comma in ruby?
For example:
$> Main.rb --xmlid 1,2,3,4,5
I want to parse and store 1,2,3,4,5 in an array.
How can I do that?
Thanks.
-1
votes
4answers
509 views
How can I override hard-coded configuration in my Perl program?
I have a Perl script that sets up variables near the top for directories and files that it will use. It also requires a few variables to be set as command-line arguments.
Example:
use Getopt::Long;
...