Tagged Questions

Programming command line utilities that take parameters.

learn more… | top users | synonyms

227
votes
21answers
58k views

Best way to parse command line arguments in C#?

When building console applications that take parameters, you can use the arguments passed to Main(string[] args). In the past I've simply indexed/looped that array and done a few regular expressions ...
57
votes
10answers
16k views

Is there a good command line argument parser for Java?

Is there a good options parser framework/library for command-line programs written in Java? E.g. the equivalent of Python's optparse?
40
votes
4answers
10k views

How to pass command line arguments to node.js?

This is probably just a javascript question. I have a web server written in node that I would like to launch with a specific folder. I'm not sure how to access arguments in javascript. I'm running ...
27
votes
11answers
15k views

Command Line Arguments In Python

I am originally a C programmer. I have seen numerous tricks and "hacks" to read many different arguments. What are some of the ways Python programmers can do this? Related What’s the best way to ...
22
votes
9answers
3k views

What's the best way to grab/parse command line arguments passed to a Python script?

The title says it all...what's the easiest, tersest, and most flexible method or library for parsing Python command line arguments?
15
votes
5answers
3k views

How do I format positional argument help using Python's optparse?

As mentioned in the docs the optparse.OptionParser uses an IndentedHelpFormatter to output the formatted option help, for which which I found some API documentation. I want to display a similarly ...
15
votes
5answers
7k views

How to load program reading stdin and taking parameters in gdb?

I have a program that takes input from stdin and also takes some parameters from command line. It looks like this: cat input.txt > myprogram -path "/home/user/work" I try to debug ...
14
votes
4answers
685 views

Escape command line arguments in c#

Short version: Is it enough to wrap the argument in quotes and escape \ and " ? Code version I want to pass the command line arguments string[] args to another process using ProcessInfo.Arguments. ...
14
votes
3answers
2k views

Windows is not passing command line arguments to Python programs executed from the shell

I'm having trouble getting command line arguments passed to Python programs if I try to execute them directly as executable commands from a Windows command shell. For example, if I have this program ...
11
votes
1answer
142 views

Powershell: how to implement standard switches?

For things like -WhatIf, we have $PSCmdlet.ShouldProcess() given to us by the [CmdletBinding] attribute. Are there other such tools or practices for implementing common command line arguments such as ...
9
votes
1answer
257 views

Haskell: Parsing command line arguments

This more of a style question, rather than a how to. So I've got a program that needs two command line arguments: a string and an integer. I implemented it this way: main = do args@(~( aString : ...
9
votes
2answers
5k views

How do you specify command line arguments in Xcode 4?

I just upgraded to Xcode 4 and can't find much documentation on it yet, since it just went gold master. I need to specify a command line argument for testing my application. The Xcode 3.2 advice ...
9
votes
6answers
965 views

How to get the nth positional argument in bash?

How to get the nth positional argument in bash? Thanks. Edit: I forgot to say but I meant that n is a variable.
9
votes
5answers
2k views

How can I process command line arguments in Python?

What would be an easy expression to process command line arguments if I'm expecting anything like 001 or 999 (let's limit expectations to 001...999 range for this time), and few other arguments ...
8
votes
2answers
12k views

Passing command line arguments in Visual Studio 2010?

Hey Guys ! I am a novice coder.. Need your help .. I am currently working on a C Project and could not figure out how to pass command line arguments to my main function in Visual Studio 2010 Express ...
8
votes
4answers
5k views

Passing additional variables from command line to make

How to pass variables to gnu makefile from command line arguments? In other words I want to pass some arguments which will eventually become variables in makefile.
7
votes
5answers
208 views

problem passing 0 as command-line argument

I've just noticed a strange behavior of perl5 (5.10.0) when I passed 0 as the command-line argument to a script, which assigns it to a variable. The problem I encountered is that if I give the ...
7
votes
9answers
454 views

Why isn't main defined `main(int argc, std::vector<std::string> argv)`?

This question is only half tongue-in-cheek. I sometimes dream of a world without naked arrays or c strings. If you're using c++, shouldn't the preferred definition of main be something like: int ...
7
votes
3answers
2k views

Parsing command line arguments in R scripts

Is there any convenient way to automatically parse command line arguments passed to R scripts? Something like perl's Getopt::Long?
6
votes
5answers
388 views

Parse config file and command-line arguments, to get a single collection of options

Python's standard library has modules for configuration file parsing (configparser) and command-line argument parsing (optparse, argparse). I want to write a program that does both, but also: Has a ...
6
votes
1answer
707 views

How to parse command line output from c#?

I want to execute an application(command line application) from the C#... and I want after executing this application and providing the input to it, I want to parse the output that will result it. ...
6
votes
6answers
312 views

Handling `argv` in a C command line program

I've read the first array member of argv will always be the program name. Is it ever useful to hang on to this? I'm learning, so forgive me please if it is a dumb question. Do people ever unshift ...
6
votes
8answers
269 views

What is the Perlish way to iterate from item n to the end of an array?

The problem is that I have n command-line arguments. There are always going to be at least 2, however the maximum number is unbounded. The first argument specifies a mode of operation and the second ...
6
votes
10answers
682 views

Reading command line arguments after '<' in C

Let me start by saying this is associated with a homework assignment. However, this is a very small and relatively insignificant part of the assignment. The C program receives input via command line ...
5
votes
6answers
101 views

Printing pointer addresses in C [two questions]

I know that my questions are very simple but googleing them didn't get me any useful results... They'r probably too simple!! No. 1 char* createStr(){ char* str1 = malloc(10 * sizeof(char)); ...
5
votes
1answer
51 views

How to set command line value via Ruby to see status via PS?

I'd like to provide feedback for my pinger program via the command line and view it using ps ax. I found a SO q. But .... ARGV[0] = "Hello!" # does nothing I'm starting the script via ruby ...
5
votes
4answers
140 views

Passing an array from php via command line to R

I have a problem, e am executing a R script from php via command line, and i need to give it two arrays for calculation. I call the script by running: Rscript nls.R ??? ??? ??? and ??? are my ...
5
votes
4answers
215 views

What happens when you don't follow the practice of argv and argc [closed]

Possible Duplicates: main(int argc, char *argv[]) Main's Signature in C++ If i write: int main(int argc, char** argv) i get proper commandline input. What would happen if i wrote ...
5
votes
3answers
224 views

Why should I use c_str() in functions

I am reading the book C++ Primer and at the file input output chapter it uses: ifstream infile(ifile.c_str()); to open a file whose name is in the string ifile. I tried the code and it works ...
5
votes
1answer
414 views

Have Thor complain about misspelled options in a Ruby command line app?

Is it possible to have Thor complain about misspelled/unrecognized command line options? Example: maid --slient # Oops! Misspelled. It should give a warning or usage info. maid --silent # Do the ...
5
votes
2answers
62 views

Does there exist an established standard for testing command line arguments?

I am developing a command line utility that has a LOT of flags. A typical command looks like this: mycommand --foo=A --bar=B --jar=C --gnar=D --binks=E In most cases, a 'success' message is printed ...
5
votes
2answers
162 views

Idiomatic way to conditionally process IO in Haskell

I'm writing a little shell script in Haskell which can take an optional argument. However, if the argument is not present, I'd like to get a line from stdin in which to ask for a value. What would be ...
5
votes
3answers
330 views

Maximum length of command line arguments passed to Delphi console application

Is there a maximum limit how long strings can be passed to Delphi console application? I am thinking of passing in a lots of JSON data. I would read the data in with ParamStr(x) function.
5
votes
5answers
4k views

Java: Check if command line arguments are null

I am looking to do some error checking for my command line arguments public static void main(String[] args) { if(args[0] == null) { System.out.println("Proper Usage is: java program ...
5
votes
2answers
389 views

Auto-complete command line arguments

In bash, executables such as mplayer and imagemagick's "convert" have a cool auto-complete functionality on their command line arguments. For instance, if I type mplayer <tab><tab> in ...
5
votes
3answers
2k views

How can i pass command line arguments to a standalone MATLAB executable running on linux/unix?

How can i pass command line arguments to a standalone MATLAB executable running on Linux/UNIX? I need to compile my MATLAB script as a standalone file that can be run on a machine without matlab ...
5
votes
5answers
890 views

Split a string containing command-line parameters into a String[] in Java

Similar to this thread for C#, I need to split a string containing the command line arguments to my program so I can allow users to easily run multiple commands. For example, I might have the ...
5
votes
3answers
1k views

How can I pass more than one command line argument via c#

I need to pass more than one command line argument via c# for a process called handle.exe: http://www.google.com.mt/search?sourceid=chrome&ie=UTF-8&q=handle.exe First, I need to run the ...
5
votes
1answer
756 views

Parameters with and without arguments in boost::program_options

I wrote a small app that uses boost::program_options for command-line parsing. I'd like to have some options that set a value if the argument is present, and alternately prints the current value if ...
4
votes
4answers
116 views

Make ReadArgs 1.0 work with a single argument

Playing around with the ReadArgs package, it seems that it does not support single-argument situations. {-# LANGUAGE ScopedTypeVariables #-} import ReadArgs (readArgs) main = do (foo :: Int) ...
4
votes
3answers
89 views

Perl: how can i pass list to script?

i need to pass list to my script how can i do it? for example i have script: flow.pl i need to pass to it list of fubs : fub1, fub2, fub3 and path to database1 = path1 and path to ...
4
votes
1answer
97 views

boost program_options: help vs. meaningful options

Is there an easy way to separate the help-option from the 'real' program options? In fact, is it possible to define a hierarchy of options, a la BNF: options := help_options | program_options ...
4
votes
1answer
131 views

Scala command line parser with subcommand support

I'm looking for a command line parser for Scala with support for subcommands (something akin to argparse in Python). It seems like there are a number of different command line parsers for Scala ...
4
votes
4answers
110 views

How can I pass main's *argv[] to a function?

I have a program that can accept command-line arguments and I want to access the arguments, entered by the user, from a function. How can I pass the *argv[], from int main( int argc, char *argv[]) to ...
4
votes
4answers
63 views

how to format a shell command line from a list of arguments in python

I have a list of arguments, e.g. ["hello", "bobbity bob", "bye"]. How would I format these so they would be passed appropriately to a shell? Wrong: >>> " ".join(args) hello bobbity bob bye ...
4
votes
1answer
161 views

GCC Command-Line Argument Pickiness

GCC can get pretty picky about the order in which it accepts its arguments: # Works. g++ Foo.cpp -L. -I. -lBar -o Foo # Linker errors. g++ -o Foo -I. -L. -lBar Foo.cpp What, specifically, are the ...
4
votes
3answers
294 views

Concise command line for subversion copy (branch)

All examples of svn branching I have seen so far look like this svn cp -m 'Making test branch' svn://svnrepo/hellosite svn://svnrepo/hellosite2 So in order to branch I need to specify full URL of ...
4
votes
1answer
202 views

Python Option Parser: Boolean flag with optional parameters

I'm using optparse.OptionParser to manage arguments for some scripts, and something I was wondering / would like to do is have boolean flags (i.e action=store_true) that can also accept a parameter. ...
4
votes
1answer
168 views

Command-line arguments of Mathematica Kernel and FrontEnd

I still know nothing on usage of such command-line options of MathKernel as -lmverbose -run cmd -password "pw" -pwfile "file" How are they working and what they are needed for? Are there other ...
4
votes
1answer
353 views

Python: Pass a generic dictionary as a command line arguments

I have a script that needs to take in the name of a file and a set of key=value pairs. The set of key=value pairs is not defined. They are dependent on the file that was passed in. eg: Script.py ...

1 2 3 4 5 11