The process of parsing arguments provided to an executable program, typically specified as whitespace-delimited strings via a command line.
0
votes
2answers
30 views
Parsing/passing command line arguments to a bash script - what is the difference between “$@” and “$*”?
I am using a bash script to call and execute a .jar file from any location without having to constantly enter it's explicit path.
The .jar requires additional variable parameters to be specified at ...
0
votes
1answer
40 views
Perl: How to use command line special characters (newline, tab) in $LIST_SEPARATOR ($")
I would like to use the value of a variable (fixed by a command line option for instance) as a list separator, enabling that value to be a special character (newline, tabulation, etc.).
Unfortunately ...
0
votes
1answer
53 views
shortcut to replace all strings in previous bash command
man bash describes a very useful Event Designator
^string1^string2^
Quick substitution. Repeat the last command, replacing string1 with string2. Equivalent to ''!!:s/string1/string2/''
Is ...
0
votes
2answers
40 views
Get autobox class from type
I know this question may seem silly because I could just do this manually. But I like to have all my options in one place (and one place only).
I want to set up the available options for a program ...
1
vote
0answers
65 views
Sets of mutually exclusive options in boost program options
My program (prog.exe) supports the following four flags: -P, -p , -b and -s. However:
-b and -p must be specified together, constitute a set, and have numeric values e.g. -b 42
-s cannot be ...
0
votes
1answer
30 views
Microsoft.Test.CommandLineParsing which dll is this in
I have recently inherited a c# .net v4 project from a former colleague which contains the following declaration:
using Microsoft.Test.CommandLineParsing;
I have search google and our entire ...
0
votes
0answers
19 views
JCommander: Is it possible to use multiple Validators in @Parameter?
I'm using JCommander
F.e. I have a Dir path parameter and File path parameter. I want to store them in File outDir and File inFile variables corresponding. I want to create 3 validators. PathExists, ...
1
vote
2answers
75 views
c++, windows - reset command line parameters after handling them
I have a Win32 application that has a dialog which does certain things only if the process is a restarted process. An outline is as follows:
#define CMDLINE_RESTART_PROCESS "--Restart"
BOOL ...
2
votes
1answer
143 views
parsing boolean values with argparse
I would like to use argparse to parse boolean command-line arguments written as "--foo True" or "--foo False". For example:
my_program --my_boolean_flag False
However, the following test code does ...
0
votes
1answer
68 views
How can I get NDesk to parse multi arg lists at the command line?
How can I get NDesk to parse multi arg lists at the command line (C#)?
I have two flags that both take multiple parameters (a list of files). So one is -j and the other is -c. But I think NDesk ...
0
votes
0answers
136 views
Command Line Parameters Through WinMain and CommandLineToArgvW
I'm encountering a problem when trying to pass a parameter through my program via the command line (eg. -w 1280 -h 1024) while attempting to utilize WinMain. I've looked through every topic I could ...
-4
votes
1answer
135 views
What is the use of optimist module in Node.Js [closed]
https://github.com/substack/node-optimist
Optimist is a node.js library for option parsing for people who hate
option parsing. More specifically, this module is for people who like
all the ...
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 ...
0
votes
0answers
28 views
Is there a opensource equivalent to the FileMatcher class in msbuild
I'm building a command line tool which will need to resolve a set of files and folders based on one or more relative paths that contain single (*) wildcards, as well as any-depth-folder (**) ...
0
votes
1answer
164 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 ...
0
votes
3answers
1k views
Java Invalid Command Line Arguments Exception
Is there an appropriate exception class for invalid command line arguments in the Java API or do I have to create my own? I've tried searching for one but can't find any in the API.
This is for an ...
1
vote
2answers
227 views
What is the simplest way to write a bash script to accept arguments and input from all possible direction (similar to sort -k1 -r)?
I want to write a bash script that can handle arguments and input similar to many built-in bash command. For example, like sort, it can handle
sort -k 1 -r input.txt
sort input.txt -k 1 -r
cat ...
0
votes
1answer
103 views
How can I perform system arguments in node.js?
node helloworld.js alex
I want it to console.log() alex. How do I pass "alex" as an argument into the code?
In python ,it is sys.argv[1]
2
votes
0answers
125 views
boost program options choices
Is there a simple way to check if the argument of an option is inside a set of predefined choices? "Simple" here means without defining an ad-hoc class.
Suppose I have the option --myoption which ...
0
votes
0answers
153 views
Multi-Character Command Parsing in Python getopt
I have been using python getopt for parsing, both short and long and it worked great. Now I need to add some more short variables in getopt function and it would look better, if I need to have multi ...
2
votes
1answer
214 views
NDesk.Options - detect invalid arguments
I am using NDesk.Options to parse command line arguments for a C# command line program. It is working fine, except I want my program to exit unsuccessfully, and show the help output, if the user ...
7
votes
1answer
157 views
in-code checking of perl switches
Is there any way to check whitch of perl command line switches have been activated ?
For instance if I run my program like perl -C foo.pl, I would like to be able to check whether the -C switch has ...
1
vote
2answers
523 views
Executing php script in command line using only file name and no php command
How can I configure linux/php to run php scripts without having to type the php -f command everytime I want to run a script.
i.e.
Instead of:
$ php -f /path/to/file/script.php
I would like for ...
1
vote
1answer
191 views
How to handle multiple syntax command line arguments using boost.program_options
Consider a utility which can be used in different modes, like:
utility.exe --mode x (one list of arguments expected)
utility.exe --mode y (different list of arguments expected)
How can i write code ...
0
votes
1answer
361 views
PHP Library to get command line options and parameters
Is there a PHP library that I can use to parse options and parameters in a command line php script? I do know the function getopt, but is there something similar for parameters?
0
votes
1answer
128 views
bash completion _parse_help broken?
In order to get easy bash completion for my scripts' command line switches, I have been exploring the _parse_help function in /etc/bash_completion (debian sid, bash v4.2-1, bash-completion v1:1.99-3).
...
2
votes
1answer
747 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: ...
4
votes
3answers
2k 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. ...
0
votes
2answers
340 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 ...
3
votes
2answers
202 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 ...
1
vote
1answer
92 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.
...
2
votes
2answers
535 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
...
0
votes
2answers
442 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 ...
2
votes
2answers
1k 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
213 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 ...
3
votes
1answer
912 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"),
...
0
votes
1answer
175 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 ...
19
votes
2answers
2k 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 ...
0
votes
4answers
2k 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 ...
56
votes
9answers
17k 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 ...
2
votes
3answers
749 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 ...
4
votes
7answers
346 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 ...