Programming command line utilities that take parameters.

learn more… | top users | synonyms

-1
votes
2answers
25 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
7 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
27 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
15 views

Python's argparse choose one of several optional parameter

I have a program which can be used in the following way: program install -a arg -b arg program list program update There can only ever be one of the positional arguments specified (install, list or ...
0
votes
3answers
24 views

How do I use scp to copy a file from the server to the client side ?

How do I transfer files from a computer I am accessing remotely back to the computer I'm currently at? Can anyone help me? Here's the syntax I know so far, scp (filename) (I don't know what to put ...
0
votes
2answers
53 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 ...
3
votes
2answers
33 views

Compare two strings (but different types of)

In a C++ program, I need to compare if 2 strings are equals or not : TagLib::String artist1 = f.tag()->artist(); (see http://taglib.github.io/api/classTagLib_1_1String.html) and argv[2] ...
-1
votes
1answer
18 views

Command line parameters in netbeans

I want to run my program as if I was running it using a terminal. Because I want to do different things depending on what attributes the user of the program provides while running it. Is there any way ...
-1
votes
2answers
48 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 ...
-1
votes
1answer
17 views

Make a .vbs to list contents of a directory and pass all that as an argument to a program

I'm trying to make a VBScript files to pass arguments to an MD5Checker Tool. And the arguments are the directory and sub-directory listings of a certain directory (e.g. "C:\Stuff"). Arguments passed ...
-1
votes
1answer
26 views

Download complete directory command line psftp [closed]

i have to move a complete folder from 1 source to another destination. still now i used mget * and xcopy but of no use.please suggest some snippets. am using psftp to connect the ftp. my code is : ...
0
votes
2answers
36 views

“Argument list too long” in display all list elements

I would like to dump the content in a list, but I have no idea how to solve this problem now. When I try to display all elements in the list, shell shows: arguments list too long in Makefile: ...
0
votes
1answer
41 views

Implementing a command-line argument

I have to implement the main function with the following signature: int main(int argc, char *argv[]) What is a command-line argument and why don't I need test cases for it? And what do they ...
0
votes
1answer
32 views

Compiler Command Line in Qt (Boost Related)

I have a problem when using <boost/thread.hpp> in my code. When I try to compile it in Qt, I get these errors: undefined reference to boost::system::generic_category() undefined reference to ...
0
votes
4answers
62 views

C programming - array size based on command line argument

I'm trying to make a grid for a board game, i know the maximum size the board can be however it can also be smaller based on what the user inputs in the command line. I have made the following ...
-1
votes
1answer
18 views

command line parameters from chrome in ubuntu [closed]

I want to start the Chrome browser in Ubuntu with a specific command line flag. In windows to add command line parameters you just go into the properties and add to the target. I am not sure how to ...
0
votes
0answers
16 views

Set multiple fields with args4j

I am writing a Java application using the args4j annotations to parse the input arguments. Usually what I do is writing code like: @Option(name="-X", metaVar = "number", usage = "description) ...
1
vote
1answer
32 views

C++ VS2010 not using my Debug command line args

In VS2010 I set command line arguments in the project settings->Debugging->Command line arguments: -d 48000 1 -raw test1.opus test1_decoded.raw However, when I debug the project and have a look at ...
0
votes
2answers
36 views

How do I switch string arguments on main

I have a c program which should take the first argument and check which function matches it. Example: ./test.o blabla Code: main(int argc, const char* argv) { switch (argv[1]) { case ...
-5
votes
1answer
55 views

C-programming board game [duplicate]

I am trying to make a board game with Maximum board width 80 cells and Maximum board height 52 cells, however the user should be able to choose the dimensions by entering them into the command line, ...
2
votes
2answers
59 views

how do I pass ' [single quote character] as argument in linux [bash shell]?

I've abc.py file which accepts argument -p [password] & -c [command]. Now I can run this file as follows : ./abc.py -p 'a!s!d!f' -c 'ifconfig' a!s!d!f is my password. As password contains ! ...
1
vote
3answers
29 views

Can I get the arguments to my application in the original form (e.g including quotes)?

I have a .Net application that take a bunch of command line arguments, process some of it, and use the rest as arguments for another application E.g. MyApp.exe foo1 App2.exe arg1 arg2 ... ...
-1
votes
4answers
81 views

Why do people leave unused `String args[]` in Java? [duplicate]

When I see Java programs, many leave the String args[] on even though the program doesn't use them. Why is this? Anything in particular?
0
votes
1answer
115 views

batch file for putty file transfer automation

i have a batch file for moving file from my local PC to server through SFTP. I have Putty installed in my system and the batch file code follows. cd C:\Program Files (x86)\PuTTY psftp open <IP> ...
2
votes
3answers
80 views

Best way to handle command line options in C# [duplicate]

I'm quite familiar with command-line arguments and how to use them, but I have never dealt with options (or flags) before. I refer to something like the following: $ sort -f -s -u letters.txt In ...
0
votes
1answer
29 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 ...
1
vote
1answer
59 views

Having trouble getting multiple command line arguments to run in windows forms

This has been bugging me this whole weekend...I'm a bit new at this so please bear with me. I am trying to get this windows form button to execute the command line arguments I am passing to it but it ...
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 ...
1
vote
1answer
57 views

How to process command line arguments?

Yesterday I made a simple program in c++ that uses the arguments passed through command line. E.G. myDrive:\myPath\myProgram.exe firstWord secondWord The program run fine and do what it has to, but ...
0
votes
1answer
39 views

How to create readable passing arguments? Java

I have a main class. I want run it at command prompt and use arguments to choose between the switch cases. public static void main(String[] args) throws InterruptedException, IOException{ String ...
0
votes
1answer
58 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
42 views

Gradle build: does someone tried alternative build script with alternative setting.gradle?

I am using gradle 1.4, and renamed a build.gradle to buildExpr.gradle and settings.gradle to settingExpr.gradle, both files are in the project root, and I am using following command to run gradle ...
0
votes
2answers
52 views

How does one pass a control or nonprinting character to a C program?

Situation: I have a C program that takes a string argument and does stuff to it (details are not relevant.) I want to pass it a string that contains a control character, such as EOF, CR, or LF, and ...
0
votes
0answers
27 views

Bash arg parser Framework

There are so many ways to pass/parse command-line arguments in bash. Currently, I have a rather basic approach for parsing this: parse.sh -a -b VALUE: while getopts "ab:c:d" opt; do # Do something ...
1
vote
1answer
43 views

bash command line arguments replacing defaults for variables

I have a script which has several input files, generally these are defaults stored in a standard place and called by the script. However sometimes it is necessary to run it with changed inputs. In ...
0
votes
1answer
50 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 ...
1
vote
0answers
61 views

How do I pass an optional flag to other Python Script?

How do I pass an optional flag to other Python Script? I have written this code below: argument_parser = argparse.ArgumentParser() argument_parser.add_argument('-validation', help="it is for ...
0
votes
1answer
28 views

Getting elements of a command line and storing them into an array

I am trying to implement the Unix command "tar" in C. It will be executed using the command p5a -c archive infile1 infile2 ... infilek where the arguments infile1, infile2, ..., infilek denote the ...
0
votes
1answer
91 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
1answer
68 views

Junk values from an input file in C

So I have this bit of C code below. When I place printf statements to test the text from the input file, I see that I'm getting a bunch of junk values, to be more specific they are not even alphabetic ...
3
votes
1answer
101 views

Pipes in Delphi for Command Prompt

How can I get Delphi to pass a string to the input pipe to a CMD process. I am able to get an error pipe and output pipe functioning properly, unfortunately not the input pipe. The code I am using is ...
0
votes
1answer
41 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
38 views

Ruby, pry: Can I add something to the command `pry example.rb` so pry automatically goes interactive when it finishes executing the script?

Pry goes into interactive mode if it encounters an exception (eg if you just put an undefined variable 'x' at the end of the script). (Also if, inside the script itself you require 'pry' and put ...
0
votes
2answers
33 views

Capturing Specific Parts of InputStreamReader in Java

So I'm working on a minor GUI that pings from the command line an IP that is selected from the IP list. I have this working and returning to an output via the getInputStream. Here's the code I have ...
0
votes
0answers
25 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 ...
-1
votes
0answers
36 views

modify program when commandline arguments are incorrect

Hi am running QT on a windows system. If I want to modify the following program so that area is not calculated and a message displayed if no commandline arguments are provided or commandline ...
0
votes
1answer
30 views

Command line arguments and “global settings” in WPF à la Clean Code

What possibilities do I have to write clean code for the following case: public class App : Application { protected override OnStartup(StartupEventArgs e) { var arguments = ...
0
votes
1answer
29 views

How to share args in two sub commands for argparser?

For example, there're two sub_commands run and batch-run, the run parser looks like this: parser_run = sub_parsers.add_parser("run") parser_run.add_argument("-c", "--config", dest="config", ...
0
votes
1answer
68 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 ...

1 2 3 4 5 24