Tagged Questions
9
votes
6answers
961 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.
3
votes
2answers
135 views
Parsing command line arguments in Python: getting a KeyError
I am trying execute my Python script as:
python series.py supernatural 4 6
Supernatural : TV Series name
4 : season number
6 : episode number
Now in my script I am using the above three ...
3
votes
2answers
237 views
How can I parse command line arguments?
I want to parse a list of arguments in a perl script, for example i have this situation :
script.pl -h 127.0.0.1 -u user -p pass arg1 arg2 arg3
How can i do for parse the list of argument that ...
1
vote
3answers
163 views
Powershell arguments list passing like -a <args list> -d <args list>
I want to write a powershell ps1 script, which needs 2 argument sets,(-a -d) and each can have upto n attributes. How to implement that?
example : DoTheTask -a <task name 1> <task name 2> ...
1
vote
0answers
88 views
Linux script input parameters generator - recommendation?
I'm looking for a tool to generate a script for handling input parameters.
I guess it would be best if the script would generate a file that I will later include (source) in my main script. This way, ...
1
vote
1answer
225 views
XCode 4: file as command argument
How do i make a file an argument for a c++ file in Xcode 4?
now when i run my project i have to do it in terminal with:
g++ mainFile.cpp -o main.out < inputfile.txt
i want to be able to do the ...
1
vote
2answers
166 views
Argparse incorrect order of positional and optional parameters
Why won't argparse parse these arguments?
--foo 1 2 3 bar
Using
parser = argparse.ArgumentParser()
parser.add_argument('--foo', nargs='+')
parser.add_argument('bar')
which ...
1
vote
3answers
149 views
How can I get args of Form program?
How can I get args of Form program? In console application I can use args[] but what about Form Application?
1
vote
2answers
838 views
Java -server argument [closed]
Possible Duplicate:
Real differences between “java -server” and “java -client”?
I've seen the argument "-server" used as a command line argument for java.exe:
...
1
vote
2answers
232 views
Tracing the arguments of an external .EXE called within a VB.net app
A program for which I do not have the source code to is executing a third-party EXE file. I'd like to find out the arguments that it is sending to the EXE file (i.e. thirdparty.exe -c "foo" -d "bar"). ...
1
vote
3answers
580 views
Forwarding command line arguments to a process in Python
I'm using a crude IDE (Microchip MPLAB) with C30 toolchain on Windows XP.
The C compiler has a very noisy output that I'm unable to control, and it's very hard to spot actual warnings and errors in ...
0
votes
2answers
36 views
How to remove an item in Bash array?
I would like to pass all script arguments to the foo function, and if the first argument is something, pass all the rest arguments to the bar function.
I implemented this like that:
foo() {
if [ ...
0
votes
2answers
108 views
Java Beanshell scripting with args[] to the the program?
The Beanshell documentation implies that you can run a script using this format on the command line:
java bsh.Interpreter script.bsh [args]
The only problem with this is that I cannot get it to ...
0
votes
1answer
56 views
Conventional ways to pass arguments to interpreted program
I'm writing an interpreter. The interpreter accepts arguments that it itself uses, including a file to interpret. The interpreted program should not see the interpreter arguments when it queries for ...