Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
7answers
8k views

Scala: Best way to parse command-line parameters (CLI)?

What's the best way to parse command-line parameters in Scala? I personally prefer something lightweight that does not require external jar. Related: Java library for parsing command-line ...
12
votes
1answer
1k views

How to enforce required command-line options with NDesk.Options?

I was just writing a console utility and decided to use NDesk.Options for command-line parsing. My question is, How do I enforce required command-line options? I see in the docs that: options ...
4
votes
7answers
308 views

Examples of getting it wrong first, on purpose

I just caught myself doing something I do a lot, and wanted to generalize it, express it, share it and see who else is following this general practice, to find some other example situations where it ...
3
votes
2answers
92 views

Python and arbitrary command line options

I am writing a command-line plugin-based program where the plugins will provide additional functionality on top of whatever I provide. So for example suppose I wrote a simple script that parsed ...
2
votes
3answers
193 views

Passing a List to Python From Command Line

I would like to make my python script run from the command line when supplies with some arguments. However, one of the arguments should be a list of options specific to one segment of the script. ...
2
votes
2answers
225 views

Parse command-line with sub-commands in C#

Is there a command-line parsing library for C# with good support for "sub-commands" in the style of git, svn etc.? For example, the "git" command has several sub-commands: git add git status git diff ...
2
votes
1answer
340 views

Parse string as if it was a command with params and options

I have this Java enum: public enum Commands { RESIZE_WINDOW("size -size"), CREATE_CHARACTER("create-char -name"), NEW_SCENE("scene -image"), DIALOG("d -who -words"), ...
2
votes
3answers
519 views

A good C alternative for Boost.Program_options?

Any good alternative written in C to replace Boost.Program_options? Given it's able to parse: Short options like -h Long options like --help --input-file Parse repeated keys/options Accepts ...
1
vote
1answer
64 views

Should “explicit off” command line switch be considered harmful?

We try to follow "standards" as best we can for processing arguments and switches from the command line. For example, by default, we embrace Posix2 and GNU standards for command line parsing. ...
0
votes
1answer
26 views

Groovy CliBuilder, how to recognise wrong arguments?

I am learning Groovy CliBuilder and I find it great, except, I don't know how to recognise wrong arguments. Consider the following example code: def cli = new CliBuilder() cli.s args: 1, longOpt: ...
0
votes
2answers
73 views

Best way to use command line args for file types and operations

I'm working on a small utility class that originally was going to read in one of four file types, which I had working. Then I found out that after I know which type of file I"m dealing with, I had to ...
0
votes
2answers
221 views

Parse linux command line with pipes/redirection using python

Is there any existing utility that can parse a linux command line with recognition of basic piping and redirection: '|', '<', and, '>'? Preferably this can be used for as parameters for a ...
0
votes
2answers
261 views

escaping string on Windows command line

I'm trying to pass string to Win32 program from command line so it will be printed without changes. Why I have to escape "AAA <BBB@pobox.com>" as """AAA <BBB@pobox.com>""" but "AAA ...
0
votes
1answer
106 views

Can't access trollop::options hash by keys?

I'm trying to parse the command line with the ruby library Trollop. #!/usr/bin/ruby require 'net/http' require 'trollop' opts = Trollop::options do opt :src, "src lang", :short => 'i', :type ...
0
votes
1answer
108 views

Command Line in Batch file?

I am making a batch file to automate mysql installation silently. When I type the following line in the command prompt everything works fine. "C:\Program Files\MySQL\MySQL Server ...
0
votes
4answers
502 views

Parsing command-line options in C#

I've seen people write custom classes to more easily handle command line options in various languages. I wondered if .NET (3.5 or lower) has anything built in so that you don't have to custom-parse ...