Tagged Questions

0
votes
5answers
106 views

Determine if string from argv[1] starts with a character or number (C-programming)

I'm writing a small application in C that takes two parameters. One is a filename, the other a number, and they may be specified in random order. ./main filename 12345 and …
0
votes
4answers
210 views

Convert std::vector<char*> to a c-style argument vector arv

I would like to prepare an old-school argument vector (argv) to use within the function int execve(const char *filename, char *const argv[],char *const envp[]); I tried it …
1
vote
1answer
45 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 …
3
votes
7answers
360 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 exe …
2
votes
3answers
145 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 …
2
votes
6answers
240 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]); …
0
votes
4answers
161 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 …
0
votes
1answer
408 views

Visual C++ argv question

I'm having some trouble with Visual Studio 2008. Very simple program: printing strings that are sent in as arguments. Why does this: #include <iostream> using namespace st …
2
votes
4answers
321 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 …
1
vote
1answer
346 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 geto …