The `getopt` and `getopt_long` functions automate some of the chore involved in parsing typical unix command line options.

learn more… | top users | synonyms

0
votes
6answers
77 views

Command line parsing in argc/argv

I have the following code: void parse(char *commandLine) { int rc = 0; int argc = 0; char *cmdLine; char *argv[MAX_ARGS]; filename = NULL; stdoutFilename = NULL; ...
1
vote
1answer
46 views

Parsing the Arguments

I am currently trying to understand the basis of parsing and wrote that code. The code is very simple. I just want to write a program that is able to make different jobs with different commends. I use ...
-2
votes
2answers
60 views

example of how to use getopt in bash

I want to get the input argument when calling my script bash file I want to call myscript file in this way $./myscript -s 45 -p any_string or $./myscript -h >>> display help $./myscript ...
0
votes
1answer
25 views

getopt 3 different arg handle in program

my project is handle three arguments how to handle this my code like this def main(argv): try: opts, args = getopt.getopt(argv,"d:f:w:",['--i','--u','--v']) print opts print args except ...
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
42 views

getopt not working correctly when run from unix command line

I wrote (copied and pasted from Google and simplified) a C program to use getopt to print out the values of the arguments passed in from the Unix command line. From Unix command line: ./myprog -a 0 ...
0
votes
1answer
37 views

How to get advanced usage of getop() in php like python argparse

I commonly use argparse module in Python to detect options/parameters, print usage, etc. I am trying to get the same results in PHP from native code or using some lightweight library/framework without ...
-8
votes
0answers
57 views

Copy command in linux using getopt function [closed]

#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <fcntl.h> #include <string.h> #include <dirent.h> #include <sys/types.h> #include ...
2
votes
1answer
36 views

“for i” without “in [sequence]” ending while using getopt

I've found example script for using getopt command in shell. #!/bin/bash args=$(getopt ab $*) set -- $args for i; do case "$i" in -a)shift; echo "it was a";; -b)shift; echo "it was b";; ...
0
votes
0answers
84 views

php cli: using argv and getopt not working

Trying to use an argv variable and getopt() doesn't seem to work. Anyone know of a work around other than using all - or -- options: <?php $arr[] = "test:"; $options = getopt(NULL, $arr); echo ...
0
votes
1answer
81 views

How to get several values using optarg?

I'd like to get more optargs after arguments, but I'm not sure how to do it. I want to call my program like ./test -a first second -b third and I can now get only one value after argument -a. When ...
0
votes
1answer
67 views

Perl Getopt::Long Assigning variable then going to subroutine

I have the following piece of code my $use = "Use: " . basename($0) . " [options]"; my $version = "Version: 0.1 \n"; my $variableA; my $variableB; GetOptions( 'a=s' => \$variableA, ...
0
votes
2answers
67 views

Suspicious memory leak when using getopt lib in MySQL?

I am posting this post on behalf of my college. He found a suspicious memory leak when using the handle_option (MySQL getopt lib) to read config file (/etc/my.cnf) He execute the Source code below ...
0
votes
1answer
68 views

Calling different programs with different options and different arguments for each option

I am trying to make a script that can execute a different number of programs simultaneously (prog1, prog2,...prog5, or even more). It can be prog1 only , or prog1&prog2, or ...
0
votes
3answers
48 views

Getopt joining parameters

Is there way using getopt function to parse: ./prog -L -U as same as: ./prog -LU This is my try (not working): while ((c = getopt(argc, argv, "LU")) != -1) { switch (c) { case 'L': ...
0
votes
0answers
42 views

Options left unprocessed

I have just run into this problem: couchy.py -H myhost-a version -E no connection --nagios couchy.py is a tool of mine using getopt. Please note that there is a mistake in the calling parameters: ...
0
votes
0answers
43 views

getopt and detecting a missing “option”

When using getopt or getopt_long to parse a commandline for a set of required options, how does one determine that a required "option" is missing or not specified? I've scoured all the docs and man ...
3
votes
1answer
90 views

Is it possible to repeat getopt

I'm trying to create a basic shell with builtin commands, and I'm having some issues with getopt. Here is the output (using valgrind): $ mkdir -p foo/bar mkdir -p foo/bar FLAGON $ mkdir -p foo/test ...
0
votes
1answer
67 views

Getopt::Long multiple switches

I have three methods and two switches I would like MethodA to be run if SwitchA is set MethodB to be run if SwitchA and SwitchB is set MethodC to be run if SwitchA and SwitchB is set and an ...
0
votes
1answer
163 views

BASH getopt command returns its own parameters instead of command line parameters

I am creating a BASH script and working with the BASH getopt command to parse command line arguments. Instead of returning the arguments provided on the command line, getopt returns the arguments ...
0
votes
1answer
52 views

How to use getopt_pp in c++?

I know this is a noob question. I used this example code from here. How is it supposed to work? I thought you can input something for who but it just closes immediately. #include <iostream> ...
1
vote
1answer
100 views

Haskell - using getOpt to parse arguments, why does ReqArg take multiple Arguments?

I got an argument parser working using getOpt which is great, but I do have one question. When using ReqArg in an option like: Option ['c'] ["config"] (ReqArg (\f opts -> opts { configFile = f }) ...
-1
votes
1answer
85 views

getopt_long long options work but not short options [duplicate]

Possible Duplicate: getopt_long() — proper way to use it? I'm struggling with getopt_long in my C program. Code: const struct option long_options[] = { { "help", 0, NULL, 'h' }, ...
1
vote
1answer
58 views

C using getopt_long()

I have been reading how to use getopt_long(), and how to "Read" the multiple character options with optlong. I need to parse the following entry from the terminal: ./bomb –n String –cp Integer –i ...
-1
votes
2answers
231 views

C using getOpt to parse multiple arguments

I need to use getopt to parse the following command: ./center -n name –cp Anumber –i Anumber –t Anumber –s Anumber -fc nameOfaFile All of them can be given out in any order. So its clear i have ...
-3
votes
2answers
160 views

Command-line options in C [closed]

I would like to create a C program that accepts an argument of the form -aK where K is some integer from 0-9. How would I parse/specify this option?
0
votes
1answer
62 views

gengetopt and Automake

I'm trying to include the generation of the cmdline.c file (from gengetopt's defaults) in my Makefile.am file. The file currently reads like these: bin_PROGRAMS = myprog myprog_SOURCES = main.c ...
0
votes
2answers
197 views

How to use getopt when option is a string on C?

I'm working/developing a C program for my university, that can have 3 options when invoked (-h for help, -o <argument> (with or without it) and last option can be a string like(test-in-1): ...
1
vote
3answers
93 views

Why am I getting this error (pointer-to error)

I'm new to StackOverflow and I'm just wondering why my C code is giving me this error. I really want this resolved and if someone could explain why this is happening rather then just give me the ...
-1
votes
2answers
69 views

Am I understanding getopt() correctly?

I'm trying to scan the command line for certain letters, symbols and values. I want to scan for "-w", a number, and "-s". I got a response in my last question, I was told to use getopt() and after a ...
0
votes
2answers
200 views

Pass multiple arguments in C command line

How am i able to pass multiple arguments in a C program like this, using different switches program -d <argument1> -p <argument2> I'm using getopt to enable me to pass arguments. int ...
0
votes
1answer
227 views

getopt() in ANSI C

I am working on OPNET and for that, I need the windows equivalent getopt() function in ANSI C language. I need to call getopt() similar like : while ((opt = getopt(argc, argv, "hadp:s")) != -1) { ...
0
votes
1answer
94 views

getopt_long acting weirdly

I'm writing some code for parsing the command line input. The way I use getopt_long is as follows: int c = 0; static struct option long_options[] = { {"mode", 1, NULL, 'm'}, ...
1
vote
1answer
338 views

C/C++ getopt optstring syntax

Using the getopt function included in unistd.h in C++, is there a way to structure the optstring such that... [-a] [-f "reg_expr"] out_file1 [[-f "reg_expr"] out_file2 ...] is possible? This is a ...
2
votes
2answers
155 views

getopt_long() to parse more than one argument to a single option letter

I want to use getopt_long() to parse command-line arguments. After reading the getopt_long() man pages, I have the understanding that getopt_long() only can parse one argument after an option. Is ...
3
votes
1answer
189 views

How to allow non-option arguments in any order to getopt?

I have a C program which expects to be called with several options and 1 non-option argument (i.e. with no associated option letter), and uses getopt to parse these options. For example, it could be ...
3
votes
3answers
537 views

optstring in getopt function

I'm not sure how to use optstring in getopt function in C. How should that string look like? I saw examples where letters are next to each other, sometimes are separated by one semicolon, sometimes ...
0
votes
1answer
41 views

getopt - capture '?'

I'm trying to use getopt in a C++ programme to parse command line arguments. The arguments are -d xxx, -s xxx and -?. I'm having trouble capturing the -? argument, which I want to print a standard ...
1
vote
1answer
91 views

use getopt to obtain multiple options

Here is my problem, I wrote a program a.exe, it can take several options, like "r:e:m:". r: and m: can't appear together, which means they run totally different tasks inside a.exe. And e: is an ...
2
votes
1answer
180 views

Using getopt for required arguments

I currently have code that looks like this: while (( flags = getopt(argc, argv, "abc")) != -1){ switch(flags){ case 'a': dflag = 1; break; case 'b': rflag = 1; ...
0
votes
2answers
126 views

What is the purpose of 'set — $args' after getopt?

The usual example for using getopt in bash is as follow args=`getopt abo: $*` errcode=$? set -- $args What does that last line achieve?
1
vote
2answers
120 views

How to pass flexible amount of arguments using getopt in python?

I'm new to python and what I have learnt from getopt is that I can pass command line arguments while executing the python script. Now my question is, is there a way to not set the number of arguments ...
0
votes
1answer
172 views

How to ignore invalid options in getopt_long

I am using function getopt_long to get command line options. I want to ignore error when a invalid option is given. Currently it printing error to stderr like: invalid option -- 's'
0
votes
1answer
75 views

gengetopt: How to parse a string without an option (like a file name)

I'm trying to parse command line options using code generated by gengetopt, and I'm trying to figure out how to parse an extra argument (after all the other options) that has no long or short option. ...
0
votes
1answer
99 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. ...
0
votes
0answers
66 views

Php get multiple files passed to getopt(), *.jpg

I am using getopt() to get php command line arguments. I want to collect a list of files or directories using the *. Example in /my/dir/file1.jpg /my/dir/file2.jpg /my/dir/file3.jpg I would ...
1
vote
1answer
82 views

C command-line parser for handling comments

I have a tool that takes input and makes output: $ tool input > output I'd like to add an option that is a long string — say, a "comment" option. This comment text is an argument to the option ...
1
vote
1answer
44 views

option followed by a option in getopt [where the earlier option was expecting a value]

I have a doubt if we have two option -a and -c and option -a needs to have a value and no value for -c now if i give ->testopt -a -c [testopt is program] then my program takes -c as a value for ...
0
votes
1answer
167 views

parse command line arguments not reading all arguments?

So, I came across the getopt module to parse command line args, although I can't make any sense of the docs. For whatever reason, I cannot figure out why this isn't seeing my --domain example.com ...
1
vote
2answers
156 views

Getopt in shell

I am writing a shell script to parse options. It parses the options correctly but when I omit any input arguments it doesn't come out of the while loop. Can anyone help on this? TEMP=`getopt -o ...

1 2 3 4