0
votes
2answers
42 views

Why do some Linux programs specify long form and shorthand arguments? [closed]

Whenever I look through documentation and man-pages, I notice that most linux programs have 2 types of arguments, and this is a genuine interest I have in finding out... One seems to be the full ...
-1
votes
2answers
37 views

What does the dash mean in windows command line syntax?

I know basic c++ coding and command line syntax. Often, the main() function looks like this: int main(int argc, char *argc[]) When I execute my program via command line, I just do this: cd ...
0
votes
1answer
10 views

Allowing a Form to Accept Cmd line arguments

I have an application that now has a settings file that can be loaded. One desired functionality I wish to give the user is the ability to double click the specific file type I have created and have ...
0
votes
0answers
10 views

Equivalent to PHIL-style parsing in C++ library

I'm looking for an alternative for boost:program_options as a way to pass parameters to a program. I have in mind the following: program.exe input file 1 input file 2 -slew of options that apply only ...
0
votes
2answers
59 views

How can I execute a command with multiple arguments in my shell in C?

I want my shell to be able to run cat file.txt as well as ls -l I'm not sure how to do this, because with cat the 2nd argument is always a text file, however, with commands such as ls the 2nd ...
-1
votes
2answers
59 views

Writing a Python script to execute with a console command

Research is at the bottom, read before -1'ing... Thanks. I have to write a Python script that runs SQL queries. I made a main class and called SQLQuery. Each SQLQuery instance represents a query. The ...
0
votes
1answer
30 views

Error when using command line to run formatting USB drive in objective-c

all. I am new mac developer. I would like to format the USB drive in using command line in objective-c. Here is some code, and it will give me error when I run it. NSTask *task = [NSTask new]; [task ...
0
votes
2answers
14 views

Separating interpreter command line arguments from script arguments

Suppose you have an interpreter that takes command line arguments including the filenames for a script to be run, and optionally further arguments to be passed to the script. The interpreter then ...
0
votes
1answer
59 views

In Java, what is the definition of a command line argument and how is it used? [closed]

This is a review question for an exam and I cant find a definition in my textbook.
0
votes
1answer
52 views

reading file in C with fopen()

I am writing a program in C that needs to read lines from a file. I am using fopen() for that purpose currently. This works fine with my program. ./myProgram /path/to/file However, I am having ...
0
votes
1answer
98 views

Code compiles and runs in Netbeans but not java command line

but when I run the program using the command line. I get a run time error of "java.lang.NoClassDefFoundError". All I did was copy the code from Netbeans and paste it on a notepad file and then tried ...
0
votes
0answers
26 views

How do I include an unnamed argument, not an option, in a ManyConsole application?

I wish to include a command in my console application - built on ManyConsole/NDesk - that imports a CSV file. It must take the file path as the first argument, not an option with a name, and a named ...
0
votes
1answer
73 views

rails rake task - access to command line arguments variable names

Ok, I have the following task, namespace :test do task :a do |t,args| p ENV.keys end end $ rake test:a ARG1 = "me" ARG2 = "my wife" The above command displays a big array i.e ENV.keys ...
0
votes
1answer
58 views

Getting error in the windows 2008 r2 server while calling exe file with an argument in the command prompt

I am calling .exe file with giving a directory. This directory includes three files and my .exe is executing these three files. Everything works perfect in my computer in the command prompt. The ...
0
votes
3answers
74 views

Why does my code print the whole string multiple times rather than 1 time?

I'm new to C. I'm having some trouble understanding some fundamental materials in reading input and pointers. I want to use a nextChar() function to read and print each character of a string that I ...
0
votes
2answers
46 views

Pass a parameterized folder name to command line

I use the following command-line: call run.bat TEST.properties In TEST.properties file I initialize the following parameter output.dir=C:/Test_Results I would like the 'Test_Results' to contain a ...
0
votes
1answer
83 views

Error with FOR LOOP in BAT FILE (WINDOWS)

Here is a for loop in a bat file, this loop takes numbers 1 through 100 and uses the mod operator on each integer. Im having difficulty calculating the average after the loop ends? can someone help me ...
3
votes
2answers
355 views

Launch process and hide command line parameters from Task Manager

I'm not sure if this question is more appropriate for Stackoverflow or SuperUser or what StackExchange site... Basically I'm launching a third-party app from C# with Process.Start with several ...
2
votes
5answers
82 views

When implementing command line flags, should I prefix with a fowardslash (/) or hyphen (-)?

Are their any conventions (either written or just generally understood) for when to use a forward slash (/) or a hyphen (-) when reading arguments/flags from a command line? C:\> myprogram.exe -a ...
0
votes
1answer
98 views

Pass string to shell script when run as command

I'm trying to write a shell script that builds an iso image from an .asm file with several utilities. When you run the script from the command line it first asks the user where the file is and where ...
0
votes
0answers
88 views

One or more Command Line Arguments with spaces to be passed Using ExecuteCommand() in c#

I have the following method to send the command line argument to open a another application public void ExecuteCommand(object command) { ...
0
votes
1answer
127 views

Overwrite property file values if specified in the command line arguments

I am working on a project in which I need to read everything from config.properties file. Below is my config.properties file- NUMBER_OF_THREADS: 100 NUMBER_OF_TASKS: 10000 ID_START_RANGE: 1 TABLES: ...
0
votes
1answer
117 views

Mouse Move application add command line arguments to auto start when windows starts

I have the application http://movemouse.codeplex.com/ and I want to launch the app at startup (which I can do) but I also want to automatically hit the "Start" button so it turns on as soon as ...
0
votes
0answers
40 views

Scheduling an console application that takes input

I need to create a command line application. And schedule it to run through task scheduler. I know how to do this much. Now I need to make this application to take an input parameter true/false, ...
0
votes
2answers
130 views

Can't Convert Single Pointer to Double Pointer

So here is my code. #include <iostream> #include <stdlib.h> #include <string.h> using namespace std; float labweight = .1; float quizweight = .1; float assignmentweight = .4; ...
1
vote
1answer
83 views

Default values for lists/arrays using Command Line Parser Library

Using Command Line Parser Library and having a list or array with a default value, the default value is printed as (Default: System.String[]). Is there any way to make it show the actual default ...
1
vote
1answer
62 views

Marking required set required with CommandLine Parser Library

Using Command Line Parser Library, is there a way to mark a set of say 3 options and make exactly one of the three options required? So having these options: [Option("list-plugins", ...
3
votes
1answer
59 views

Reporting unknown arguments using CommandLineParser

Is there any way to make the Command Line Parser library report unknown arguments? Given the following options class: public class Options { [Option('i', "int-option", DefaultValue = 10, ...
1
vote
2answers
168 views

Windows Batch error: “'ping' is not recognized as an internal or external command operable program or batch file.”

I am trying to run this command in windows: ping -n 5 127.0.0.1 > nul I get the error: 'ping' is not recognized as an internal or external command operable program or batch fie. Why can't ...
-1
votes
1answer
81 views

Algorithm to read and write command line string

I'm trying to write a program that can read a command string and validate it (get the name of the command and it's arguments), change those arguments and then rewrite the command string dynamically. ...
2
votes
2answers
253 views

C++ Program to execute another Program with Command line arguments

How do you execute a command line program with arguments from a c++ program? This is what I found online: http://www.cplusplus.com/forum/general/15794/ std::stringstream stream; stream ...
0
votes
2answers
61 views

Is it possible to call a method or pass an argument during run time from a command line?

I am using Mac. I have a c++ application, e.g. called myapp. Usually I can invoke the application, by ./myapp. myapp application is capable of processing an image and returns some text result. ...
0
votes
1answer
89 views

Re : Open Matlab function from command line linux

I got the answer from the following question. It asks me to create a bash file. The question is in the title How to call MATLAB functions from the Linux command line? Thus I tried the following ...
3
votes
0answers
112 views

Create a new file for visual studio C++ project from the command line using the /Command option

From the command line, I need to create a new C++ source or header file for an existing project. I found Visual Studio provides commands to interact directly with the IDE from the command window. The ...
2
votes
1answer
75 views

in a console app what's the best way to prevent special sequences in command line arguments from being escaped?

I wrote this console app that reads a sequence of command line arguments and does something with them. The problem is that if the user enters something like: --folder "C:\my folder\" --username ...
-10
votes
4answers
148 views

Why does my program crash if I don't give command line arguments to it? [closed]

I made a simple test program to play around with C++11 threads. #include <iostream> #include <stdlib.h> #include <thread> using namespace std; void tee(int civ) { for(int ...
2
votes
2answers
333 views

Use of percent sign (%) as a CMD parameter is interpreted as a variable

I try to run a batch file with the following code: wget.exe "http://example.com/file0%24.html" The problem is, that CMD is interpreting the %2 as a variable (the second command line parameter) ...
1
vote
2answers
152 views

Passing -D arguments to Java command line as file

I want to pass -D arguments to a Java program, which will set those variables as System Properties. But I have 3 to 4 -D arguments and the list can grow dynamically, so is it possible to add all those ...
3
votes
2answers
400 views

Execute command multiple times with curly brackets arguments list

When I needed to run a command multiple times with a different argument I used this approach (without understanding it fully): touch {a,b,c} Which is equivalent of: touch a touch b touch c I ...
7
votes
3answers
195 views

“Conditional” parsing of command-line arguments

Say I have an executable (running on mac, win, and linux) a.out [-a] [-b] [-r -i <file> -o <file> -t <double> -n <int> ] where an argument in [ ] means that it is optional. ...
-1
votes
1answer
30 views

How to use a argument with space in a batch file [closed]

i needed to pass some arguments to a exe, but one of the argument was having a space the code is myApp.exe arg1 arg 2 This created a problem as the second argument was split into two.The work ...
1
vote
2answers
751 views

Is there a way to start a program minimized with VBScript using WScript.Shell?

Here is some example code I have right now to launch an app: Set objShell = Wscript.CreateObject("WScript.Shell") objShell.Run """C:\Program Files\Handbrake\HandBrakeCLI.exe""" I tried the ...
3
votes
2answers
2k views

Downloading MySQL dump from command line

I am moving away from Linode because I don't have the Linux sysadmin skills necessary; before I complete the transition to a more noob-friendly service, I need to download the contents of a MySQL ...
2
votes
2answers
149 views

Passing Python variables via Linux command line?

I'm new to Python (as in, yesterday), so bear with me if I don't know 'the obvious' yet. There are two ways I could go about this, and either would work fine for me, and I'm not sure if getopt or ...
1
vote
2answers
1k views

Batch file for parsing command line input that contains comma separated values

I am working on a command line utility that takes set of input parameters as command. Those input parameters are then validated against predefined names. The utility is invoked in this manner: ...
-1
votes
2answers
2k views

Hadoop Mapreduce multiple Input files

So I need two files as an Input to my mapreduce program: City.dat and Country.dat In my main method im parsing the command line arguments like this: Path cityInputPath = new Path(args[0]); Path ...
1
vote
0answers
51 views

Getting stopevent from ProblemSteps Recorder using command line

I'm looking to integrate the Problem Steps recorder available in Windows 7+ into my c# application to allow users to record bugs in my software. The command line arguments allow a /stopevent to be ...
1
vote
2answers
92 views

Command line arguments not incrementinc argc

I am new to c++ and i am trying ti understand how it works . So i have the next code : int _tmain(int argc, _TCHAR* argv[]) { std::wcin.get();//for console window input int i=1; // decode ...
0
votes
2answers
74 views

Ruby OptionParser: How do I get the PATH? if the command is just “command path/to/some/file”?

I want create a command that has the following structure command path/to/some/file How do I enable this without entering the option -p or --path? #!/usr/bin/env ruby require 'optparse' options = ...
0
votes
1answer
626 views

vbscript pass the current directory as named argument

I'm trying to pass the working directory to vbscript as a named argument. The system normally expands "." to the current path, but when I check the named argument I just get the string "." Here's ...

1 2 3 4