Tagged Questions
The argv tag has no wiki summary.
14
votes
5answers
514 views
Python: Which encoding is used for processing sys.argv?
What encoding are the elements of sys.argv in, in Python? are they encoded with the sys.getdefaultencoding() encoding?
sys.getdefaultencoding(): Return the name of the current default string ...
12
votes
2answers
557 views
argv[argc] ==?
My professor and a couple of students are arguing about whether argv is null terminated or not. My friend wrote a small program and it printed out null but another kid said that he is probably simply ...
12
votes
8answers
1k views
Is “argv[0] = name-of-executable” an accepted standard or just a common convention?
When passing argument to main() in a C or C++ application, will argv[0] always be the name of the executable? Or is this just a common convention and not guaranteed to be true 100% of the time?
8
votes
4answers
7k views
An integer is required? open()
I have a very simple python script that should scan a text file, which contains lines formatted as id='value' and put them into a dict. the python module is called chval.py and the input file is ...
6
votes
1answer
127 views
How do you pass the string “*.*” to ruby as a command line parameter?
code:
#test_argv.rb
puts "length: #{ARGV.length} "
ARGV.each do |a|
puts "Argument: #{a}"
end
If I supply the string "*.*" (with or without quotes) when I call the above, I get the ...
6
votes
3answers
227 views
How can I tell a Perl function that takes a file to read from the special ARGV handle?
In perldoc perlvar, I read this:
Note that currently "ARGV" only has
its magical effect within the "<>"
operator; elsewhere it is just a plain
filehandle corresponding to the last
file ...
5
votes
3answers
153 views
How do you access ARGV in Mathematica?
I'd like to write command line scripts in Mathematica, but I can't seem to find an Argv[i_Integer] like function. (The docs are FANTASTIC otherwise.)
4
votes
4answers
108 views
Can argv[0] contain an empty string?
In any C program, the command line argument argv[0] points to the name used to invoke the program. Is there any circumstance in which it will point to an empty string ""?
An example code snippet for ...
4
votes
5answers
97 views
how to tell when you've reached the end of a C array? (specifically argv)
been asked a question on this, basically coming up with argc...without actually having argc
if your given argv, which as I understand essentially a array of pointers to the relevant char arrays of ...
4
votes
3answers
481 views
How to access argv[] from outside the main() function?
I happen to have several functions which access different arguments of the program through the argv[] array. Right now, those functions are nested inside the main() function because of a language ...
4
votes
5answers
866 views
How do I launch a subprocess in C# with an argv? (Or convert agrv to a legal arg string)
I have a C# command-line application that I need to run in windows and under mono in unix. At some point I want to launch a subprocess given a set of arbitrary paramaters passed in via the command ...
3
votes
4answers
323 views
print column name that matches string from commandline
I want to input a string name (i.e. "COL2") to an awk or cut command and print the column that matches that column header string.
the datafile looks like this:
COL1 COL2 COL3 COL4 COL5 COL6
a a b d ...
3
votes
8answers
3k views
convert string to argv in c++
I have an std::string containing a command to be executed with execv, what is the best "C++" way to convert it to the "char *argv[]" that is required by the second parameter of execv()?
To clarify:
...
3
votes
3answers
190 views
Can I skip a whole file with the <> operator?
The following Perl code has an obvious inefficiency;
while (<>)
{
if ($ARGV =~ /\d+\.\d+\.\d+/) {next;}
... or do something useful
}
The code will step through every line of the file we ...
2
votes
4answers
130 views
Exact Memory Size of argv in C
So my professor gave me (where x is a C executable):
$ ./x y z w
He said the memory size of argv in int main(int argc, char **argv) is 48 bytes, including itself.
Can someone help explain this to ...
2
votes
2answers
61 views
displaying original args after localizing $0
When run with arguments a b c d e f g, this script:
system("ps ww$$");
{
local $0 = "foo";
system("ps ww$$");
}
system("ps ww$$");
prints something like:
PID TTY STAT TIME COMMAND
...
2
votes
2answers
151 views
Finding pipe and redirects in perl @ARGV
When writing a traditional Unix/Linux program perl provides the diamond operator <>. I'm trying to understand how to test if there are no argument passed at all to avoid the perl script sitting in ...
2
votes
2answers
79 views
Active perl cuts out “^” from @ARGV
The following code works only on mac, but not on windows7.
perl -e "print @ARGV" aaa^bbb
On Mac (perl 5.10, darwin) it prints out as expected: aaa^bbb
On Windows 7,32bit (ActivePerl 5.12) it ...
2
votes
1answer
106 views
Ruby: ARGV breaks accented characters
# encoding: utf-8
foo = "Résumé"
p foo
> "Résumé"
# encoding: utf-8
ARGV.each do |argument|
p argument
end
test.rb Résumé > "R\xE9sum\xE9"
Why does this occur, and how can I get ARGV to ...
2
votes
4answers
88 views
problem generating argv for spawnvp()
I need to run a command using spawnvp(), so I can redirect the output. My problem is, that I don't have argv, but just a string with the whole commnd, so I need to split it. Unfortunately I got an ...
2
votes
1answer
517 views
Pass command line arguments as well as input from STDIN for Perl script?
I have a Perl script which takes both command line arguments and STDIN
#!/usr/bin/perl -w
use strict;
use warnings;
my $logpath = $ARGV[0];
print "logpath : $logpath\n";
print "Name : ";
my $name = ...
2
votes
7answers
693 views
C++ - int main(int argc, char *argv[])
If I have this:
int main(int argc, char *argv[])
In the body, you can sometimes find programs using argv[1].
When do we use argv[1] over argv[0]? Is it only when we just want to read the second ...
2
votes
3answers
165 views
Ruby interpreter name
How do I get the currently running Ruby 1.8 interpreter name in Ruby (e.g. /usr/bin/ruby), i.e. the argv[0] passed to the C main() function. I'm not interested in $0, because that's the name of the ...
2
votes
6answers
1k views
Using argv in C?
For an assignment, I am required to have command line arguments for my C program. I've used argc/argv before (in C++) without trouble, but I'm unsure if C style strings are affecting how this works. ...
2
votes
2answers
2k views
create array of pointers to files
How would I go about making an array of file pointers in C?
I would like to create an array of file pointers to the arguments of main... like a1.txt, a2.txt, etc... So I would run ./prog arg1.txt ...
2
votes
1answer
478 views
How to set mutiple words variable from command line input in C shell
I'm writing a script to search for a pattern in file. For example
scriptname pattern file1 file2 filenN
I use for loop to loop through arguments argv, and it does the job if all arguments are ...
2
votes
4answers
1k views
Ruby's ARGV can be empty on windows depending on a way to run script
My demo.rb:
puts ARGV.size
ARGV.each do |a|
puts "Argument: #{a}"
end
The result depends on how we run a script:
> demo.rb foo bar
0
> ruby demo.rb foo bar
2
Argument: foo
Argument: bar
...
2
votes
6answers
831 views
How do I handle argv character array assignments?
I found two ways of passing command-line arguments into a character array:
int main (int argc, char **argv)
{
const char *s1 = argv[0];
char s2[256];
strcpy(s2, argv[0]);
printf("s1: %s\ns2: ...
2
votes
1answer
1k views
Python, how to parse strings to look like sys.argv
I would like to parse a string like this:
-o 1 --long "Some long string"
into this:
["-o", "1", "--long", 'Some long string']
or similar.
This is different than either getopt, or optparse, ...
1
vote
3answers
80 views
C String Becomes Null
I am learning how to get arguments in C, however, when I run the code below with the following input, the first one becomes null.
Input: ./a.out a b c d e f g h i j k
Output: (null) b c d e f g h i ...
1
vote
3answers
63 views
how can I read a command line argument using getopt? [closed]
I would like to get a string passed in by the user on the command line. The string is basically a specific argv element I'm trying to get.
For example: on linux when the user types in
> ...
1
vote
2answers
51 views
How to get first argument of a program call
I'm making a program in C and this is my code:
int main(int argc, char **argv) {
int n;
char aux[10];
sscanf(argv[1], "%[^-]", aux);
n = atoi(aux);
}
So, if I run the program from ...
1
vote
3answers
84 views
Error when using argv
I'm learning Python using Learn Python The Hard Way. It is very good and efficient but at one point I had a crash. I've searched the web but could not find an answer.
Here is my question:
One of the ...
1
vote
0answers
274 views
mpic++ main(int, char**) - deprecated conversion from string constant to ‘char*’
during compiling older C++ code on Ubuntu 11.10 with mpic++ (Open MPI C++ wrapper compiler) I got this warning connected with int main(int argc, char **argv){...}:
main(int, char**) : warning: ...
1
vote
3answers
81 views
how to combine multiple *argv into a char* type messge
I wrote a TCP socket client program which allows user to input the IP, port, and message as arguments.
It is like:
./a.out 127.0.0.1 555 test message
My question is, how to combine "test" ...
1
vote
1answer
175 views
Passing char ** as reference and returning const char * as reference
I have a class which parses the Command line arguments and then returns the parsed value to the client class. For parsing, I need to pass argv to parse function. I would like to pass by reference but ...
1
vote
4answers
109 views
Python: Assign multiple values at once: pass all argv arguments to a function
I want to pass all argv arguments to a function. I have created this code, but it gives me an error. How knows how to make this work? Many thanks for your help.
if __name__ == "__main__":
import ...
1
vote
1answer
152 views
Jython 2.5.1: Calling From Java into __main__ - how to pass in command line args?
I'm using Jython from within Java; so I have a Java setup similar to below:
String scriptname="com/blah/myscript.py"
PythonInterpreter interpreter = new PythonInterpreter(null, new PySystemState());
...
1
vote
3answers
448 views
Recursively matching filenames with glob argument
I have been trying to get a list of files matching a glob pattern in a command line argument (sys.argv[1]) recursively using glob.glob and os.walk. The problem is, bash (and many other shells it ...
1
vote
1answer
727 views
Node.js: process.argv vs. process.ARGV
I notice that Node defines both process.argv and process.ARGV (capitalized). The later isn't mentioned in the documentation and is, in every case I've encountered so far, the same object.
Is ARGV ...
1
vote
1answer
151 views
execvpe argv to parameter matching syntax help needed
I get "passing argument 2 of ‘execvp’ from incompatible pointer type" and
expected ‘char * const*’ but argument is of type ‘const char **’
I'm wondering what the correct syntax is? Thanks!
int ...
1
vote
4answers
718 views
Qt - QApplication app(argc, argv)
I noticed that the main.cpp in a Qt application has to contain the following line:
QApplication app(argc, argv);
I know that argc is the number of command-line arguments, and argv is that array ...
1
vote
4answers
261 views
unable to convert contents in argv[] into float[][] in C
I am doing a program where I'm multiplying matricies, but my big issue is converting from the input into the two arrays that I'll eventually be multiplying. The following is my code for conversion ...
1
vote
3answers
633 views
Learning the import argv module
I'm currently going through Learn Python The Hard Way. I think this example might be out dated so I wanted to get feedback here on it.
I'm using Python 3.1
from sys import argv
script, first, ...
1
vote
6answers
408 views
Can't compare argv?
I have this code:
if (argv[i] == "-n")
{
wait = atoi(argv[i + 1]);
}
else
{
printf("bad argument '%s'\n",argv[i]);
exit(0);
}
When this code gets executed I get the following error:
...
1
vote
4answers
238 views
How to get the name of the input file in a Perl one-liner?
cat monday.csv
223.22;1256.4
227.08;1244.8
228.08;1244.7
229.13;1255.0
227.89;1243.2
224.77;1277.8
cat tuesday.csv
227.02;1266.3
227.09;1234.9
225.18;1244.7
224.13;1255.3
...
1
vote
1answer
332 views
perl how to pass argument to ARGV from a text file
I have a list of arguments to pass into a perl script, using ARGV. The 4th argument, is a servername, but I want to pass it a text file with a list of servers called servers.txt. How do I pass that in ...
1
vote
4answers
596 views
How do I benefit from argc and argv in C++, the standard way? [closed]
What is the standard way to retrive and check for the argc and argv and what is the best usage and how to do that in linux?
Please provide examples.
"I want to have a complex command-line options ...
1
vote
4answers
612 views
Problem with sys.argv[1] when unittest module is in a script
I have a script that does various things and access paramenters using sys.argv but when the script gets to the unittest part of the code it says there is no module for this. The script that I have is:
...
1
vote
2answers
730 views
Why does MPI_Init accept pointers to argc and argv?
this is how we use MPI_Init function
int main(int argc, char **argv)
{
MPI_Init(&argc, &argv);
…
}
why does MPI_Init use pointers to argc and argv instead of values of argv?