0
votes
1answer
13 views
How to use _spawn or _exec for bootstrapping?
After writing the following program, it does not appear to pass arguments to the called application. While researching _spawnv and what it can do, _execvp was found as what appeare …
0
votes
5answers
69 views
Is it possible to have the name of the executable without the path?
Hi I'm trying to use the name of the executable and an usage string, I'm using argv[0] for such purpose but instead of the name of the executable itself it gives me the complete pa …
1
vote
3answers
65 views
Nose test script with command line arguments.
I would like to be able to run a nose test script which accepts command line arguments. For example, something along the lines:
test.py
import nose, sys
def test():
# do som …
0
votes
3answers
28 views
MS Access Command Line Args Not Working In Virtual PC
My associate is using Win 7 Pro 64bit, and running an MS Access 2003 application in a Virtual PC (setup as Win XP).
It appears that the Access command line arguments are being ign …
1
vote
5answers
56 views
Initializing program with files passed as main arguments (system.getProperty())
Hello,
I have to execute my program with this line:
java -DImport=data.txt -Din=input.dat -Dout=output1.dat main.Main
I've been trying to figure it out how to do this but can't …
1
vote
3answers
82 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 warni …
1
vote
4answers
135 views
Is it possible to use a Unicode “argv”?
Hi, I'm writing a little wrapper for an application that uses files as arguments.
The wrapper needs to be in Unicode, so I'm using wchar_t for the characters and strings I have. N …
4
votes
8answers
189 views
What is the Perlish way to iterate from item n to the end of an array?
The problem is that I have n command-line arguments. There are always going to be at least 2, however the maximum number is unbounded. The first argument specifies a mode of operat …
0
votes
6answers
94 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.
6
votes
10answers
327 views
Reading command line arguments after ‘<’ in C
Let me start by saying this is associated with a homework assignment. However, this is a very small and relatively insignificant part of the assignment.
The C program receives in …
2
votes
4answers
140 views
Why won’t my console app work with 25 arguments or more?
I am making a console application where I drop files onto the .exe from Explorer and it will move them to the appropriate folder based on rules I have set in the logic of the progr …
