Argument vector is the arguments passed in from the command line when starting a program.
0
votes
1answer
23 views
File.open works when getting an argument at runtime, but not when getting an argument from the command line
If I enter a file name without passing it in the command line (E.g. ARGV would be empty) everything works fine, but if I pass it an argument in the command line I always get a File or directory does ...
3
votes
0answers
45 views
Windows command line args getting to Ruby program only if explicitly invoked as “ruby” [duplicate]
I have a Windows 7 machine, and I'm calling a Ruby script from it. If I do this:
ruby Test.rb blah
Then ARGV[0] is "blah", as expected. But if I do this:
Test.rb blah
Then ARGV[0] is empty.
...
1
vote
2answers
38 views
char **argv[] segfaults when trying to get input from the command line
I'm trying to do the most basic of things and am hitting a brick wall. I'm trying to read in a file name from the command line to use later in my program, but I can't even seem to extract the name ...
0
votes
1answer
59 views
How do I read a file in Ruby using a specific script?
I am doing a series of tutorials on how to code in Ruby. I want to read a .txt file using this formula:
filename = ARGV.first
prompt = "> "
txt = File.open(filename)
puts "Here's your file: ...
0
votes
0answers
95 views
change process name without change argv[0] in Linux
I need to modify the process name of my program in C langage.
I precise, this is not the name of a thread that I want to change.
I want change the name of my program, but the only solution, I found is ...
1
vote
5answers
147 views
Checking to make sure argv[1] is an integer c++
for my program I have to make sure the user only inputs a positive INTEGER. for example if the user inputted 12hi it should not run the program and print to std error. I am not quite sure how to ...
1
vote
4answers
115 views
What's wrong with my code? What is argv[1]?
I'm trying to ask the user to type in a string so I will print the length of the string. My code is built succeeded. However, when I entered a word and pressed 'enter', the program keeps running. I ...
0
votes
1answer
62 views
Why is my command line argument handling crashing my program?
Why is something so seemingly simple is crashing my program?
I am trying to get a value for n to make an array the size of N and perform various operations on it, but that's beside the point. ...
0
votes
1answer
74 views
Notice: Undefined variable: argc in C:\xampp\htdocs\XerXes.php on line 73 Notice: Undefined variable: argv in C:\xampp\htdocs\XerXes.php on line 73
I have recently gotten into DOS attack scripts (How to use them and how to defend from them) and picked up this one called XerXes. I noticed that this has been coded in two different languages .c and ...
0
votes
0answers
72 views
php cli: using argv and getopt not working
Trying to use an argv variable and getopt() doesn't seem to work. Anyone know of a work around other than using all - or -- options:
<?php
$arr[] = "test:";
$options = getopt(NULL, $arr);
echo ...
2
votes
3answers
101 views
Problems using main(int argc,char *argv[])
#include<stdio.h>
#include<string.h>
int main(int argc,char *argv[])
{
char string[]="#";
printf("%s\n",argv[1]);
printf("%s\n",argv[2]);
printf("%s\n",argv[3]);
...
1
vote
2answers
93 views
Reading from a file into the *argv[] array
I try to convert a Linux program in C to DOS. Since the DOS command line allows only 128 bytes I try to read in the arguments from a file. This file has one line for each argument.
So I read in the ...
1
vote
2answers
39 views
Weird Issue With argv in if statement
I'm having problems with argv in an if statement in one of my C programs. I know I must be missing something simple and stupid (it's been a while since I've done anything in C). Problem is, it won't ...
3
votes
4answers
217 views
Passing arguments to script, getting: “Use of uninitialized value $ARGV[0]”
Problem: Windows XP is not passing command line arguments to perl scripts.
Symptom: a simple command like:
say "Argument 1 (\$ARGV[0]) is: $ARGV[0], argument 2 (\$ARGV[1]) is: $ARGV[1].";
Resulted ...
2
votes
1answer
57 views
Can command line arguments in ruby be erased?
For security reasons I would like to remove the command line arguments after parsing them:
login.rb --user me --password wombats
I've tried ARGV.clear and $*.clear
changes to neither ARGV or $* ...
0
votes
1answer
87 views
Python Popen sending to process on stdin, receiving on stdout
I pass an executable on the command-line to my python script. I do some calculations and then I'd like to send the result of these calculations on STDIN to the executable. When it has finished I would ...
0
votes
1answer
47 views
Python send data to an executable passed as parameter in terminal
I have a python script which gets 2 parameters from the command line, an executable and a file. After I do some computation I need to pass by stdin the result of this computation to the executable.
...
0
votes
2answers
112 views
argv function and string as address in C language
Question.
How come the strings such as "C Programming" is compiled as address values as following?
#include <stdio.h>
void ShowAllString(int argc, char * argv[])
{
int i;
...
0
votes
2answers
93 views
call main(argc, argv) from fork()
There is mostly nothing found through search about calling main - so I am going to guess this question is that fundamentally 'off'.
The suggested questions provides this C# question "Calling Main() ...
-3
votes
2answers
139 views
Comparing two files in c [closed]
As the title says I need to compare 2 files.If a line comes by ,that isnt the same between this 2 files,print that line (From both files).The code is giving a don't send error.I can't seem to be able ...
0
votes
0answers
21 views
Comparing 2 files until a line where they are different appears
As the title says I need to compare 2 files.If a line comes by ,that isnt the same between this 2 files,print that line (From both files).The code is giving a don't send error.I can't seem to be able ...
0
votes
2answers
51 views
Build a char converter program with argv[]
I am supposed to build a program that takes argv[1] and according to it transforms the characters into lower case or upper case.However I am stuck cuz C cant compare a pointer with a string.Any ideas ...
0
votes
2answers
52 views
Build a tail program with argc and argv[]
The exercise requests a tail program with argc and argv[].It will have a specific number of lines.The user will put a N argument and than the program will print the last n lines.When I call this ...
0
votes
1answer
271 views
Passing Argument 1 discards qualifiers from pointer target type [closed]
My main function is as follows:
int main(int argc, char const *argv[])
{
huffenc(argv[1]);
return 0;
}
The compiler returns the warning:
"huffenc.c:76: warning: passing argument 1 of ...
0
votes
2answers
139 views
opencv sample code run time error using argv[]
I run this sample cod, and i get run time exception
#include "stdafx.h"
#include <iostream>
using namespace std;
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
...
0
votes
3answers
120 views
assignment from incompatible type c
I do not use C nor C++ too often but I'm about
to finish compiling a file that detects faces with opencv which is a copy of a c++ file that already does it for windows, is for tagging in a social ...
0
votes
2answers
107 views
Parsing command line for execve() error. Plain C
I'm new to C pointers and trying to execute process with command line and obtain its pid. Any of system(), sh(), etc, that use command line doesn't return pid, so I desided to use execve(). But it ...
2
votes
4answers
151 views
How to take input from argv[] outside of main c++
I'm currently attempting to take a number with argv[] from a command line.
In other words I'm attempting to attain the 2 from
./calculator -q 2
My current setup is something along the lines of:
...
0
votes
4answers
84 views
Command-line arguments
I am aware that the main function can take two arguments int argc and char* agrv[]. This well documented. However the main function can also take a third argument. Does anyone one know what this ...
1
vote
1answer
85 views
pointer to structure argv assignment
I've been trying to assign argv[x] to structure pointed to by variable.
I wrote following code and getting Segmentation fault, which I know is a memory violation. I do not understand where I have made ...
0
votes
0answers
83 views
Pass in variable amount of arguments python when calling another module
So I need to call another module from within a module and I need to pass arguments from a text file. I am going to be reading line by line from a text file and each line of the text file should be an ...
0
votes
3answers
95 views
If I use a struct to carry argc and argv, how do I assign the address argv to a variable inside the structure?
I have defined some structure above main as:
struct arguments
{
int c;
char *v[];
};
now I want to do this in main:
int main(int argc, char *argv[])
{
arguments arg;
arg.c = argc;
...
0
votes
2answers
189 views
Initializing a c++ string with argv
I have a function that takes a c++ style string. I want to either put argv[1] into a c++ string, or simply pass it directly to my function.
#include <iostream>
#include <string>
using ...
0
votes
3answers
75 views
Tokenizing user input in C (store in **arg)?
I'm attempting to write a simple shell like interface, that takes in a users input (by char) and stores it via a pointer to a pointer* (exactly how argv works). Here's my code:
char input[100];
char ...
0
votes
4answers
52 views
C taking in arguments from Command prompt as conditions
I'm completely new to C...well sort of. i kind know c++. I'm trying to run a multi-threated program for my assignment, and one of the requirements was to have the user input his commands on the ...
0
votes
2answers
121 views
Trouble with argc and argv
Trying to add command line arguments to my programs. So I was experimenting and cannot figure out this intellisense warning for the life of me. It keeps on saying it is expecting a ')', but I have ...
0
votes
3answers
148 views
How to interpret special characters in command line argument in C?
First problem:
Suppose we write a simple program which takes in command line arguments and prints to a file. If the user enters
writetofile Hello!0\n w%orl\t!@#y
bash replies with
!0: event ...
1
vote
2answers
70 views
Ruby - ARGV.empty? ModuleName else code here end always returns ModuleName
probably stupid question
I have some code:
if ARGV.empty?
ModuleName
else
#Awesome Code Here
end
But no matter what, the ModuleName module is always evaluated. Is there something that I am ...
1
vote
4answers
77 views
argv reads irrelevant charaters in C
I am learning C programming. My program reads irrelevant numbers than what I supply. Any help? Where am I missing?
#include <stdio.h>
main(int argc, char argv[])
{
int i,sum, digit;
...
-3
votes
4answers
66 views
(C) How to use strncat() with **argv? [closed]
int main(int argc, char * argv[]){
char file_extension[10];
strncat(file_extension, argv[2][5], 6);
When I do this, I get "warning: passing arg 2 of 'strncat' makes pointer from integer ...
0
votes
0answers
80 views
How to write a Python interpreter for script that can use a shebang to load the interpreter
I have simple script interpreter written in Python that processes a script written in a text file. I can refer to the interpreter using a shebang at the top of the script so that I can then execute ...
0
votes
4answers
94 views
Creating a argv[] to send args to another function
I know there is a couple of entries on this and I looked through them and couldn't quite get to where I wanted to be.
I'm building function where it can read the contents of a directory and pass the ...
2
votes
1answer
83 views
blank query rejection using argv[0] in perl
I'm trying to make the script exit when a blank query is entered. From what I've read, this code should work fine, but doesn't seem to want to, because "" isn't numeric. What is the workaround?
...
-1
votes
2answers
92 views
Passing argv strings to functions in C [closed]
I know there's a posts about this and I have tried to go through them and they haven't seemed to solve my issue. I'm guessing it's something simple that I've overlooked, but I swear I don't see it.
...
3
votes
4answers
279 views
Why does “bob” == “godzilla” in Perl?
In Perl class today, a student turned in an assignment which vexes me. We are studying ARGV, but the result was not what I expected. His program (meme.pl) was:
#!/usr/bin/perl
$A = $ARGV[0];
...
3
votes
4answers
155 views
C argv what is the maximum size of data [duplicate]
Possible Duplicate:
About command line arguments of main function
How would I determine what the maximum size of data I could pass into a C main(int argc, char* argv)? Is there a macro ...
0
votes
3answers
84 views
How to pass a parameter list to another function in Python?
Using optparse, I want to separate the list of option list parameters from the place where I call add_option(). How do I package the stuff up in File A (and then unpack in file B) so that this will ...
0
votes
4answers
140 views
argument type differentiate in C program
I have a main function
int main (int argc, char **argv)
{}
I'm supposed to pass two different command line arguments:
argv[1]=IP ADDRESS type
argv[2]=INTEGER type
e.g. ./a.out IP-ADDRESS ...
3
votes
3answers
101 views
argv in python not working with windows executable cmdline
in windows: I would like this program to run on commandline. However, I am getting an error. What am I doing wrong?
# create a method that append the letter stored in variable letter, ntimes.
import ...
0
votes
2answers
111 views
argv does not work with chdir
I am trying to change the current working directory to the path of the executable, using chdir() in the following manner:
#include <iostream>
#include <string>
using namespace std;
int ...
