Tagged Questions
7
votes
5answers
208 views
problem passing 0 as command-line argument
I've just noticed a strange behavior of perl5 (5.10.0) when I passed 0 as the command-line argument to a script, which assigns it to a variable. The problem I encountered is that if I give the ...
6
votes
8answers
269 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 operation and the second ...
4
votes
3answers
89 views
Perl: how can i pass list to script?
i need to pass list to my script
how can i do it?
for example i have script: flow.pl
i need to pass to it list of fubs :
fub1, fub2, fub3
and path to database1 =
path1
and path to ...
4
votes
5answers
245 views
What is the equivalent of Perl's (<>) in Python? fileinput doesn't work as expected
In Perl one uses:
while (<>) {
# process files given as command line arguments
}
In Python I found:
import fileinput
for line in fileinput.input():
process(line)
But, what happens ...
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 ...
3
votes
2answers
1k views
How can I get Perl's Getopt::Long to tell if arguments are missing?
I'm using Perl's Getopt::Long module to parse command line arguments. However, it seems that it returns a true value even if some of the arguments are missing. Is there a way to tell if this is the ...
3
votes
5answers
454 views
How can I get entire command line string?
I'm writing a perl script that mimics gcc. This my script needs to process some stdout from gcc. The part for processing is done, but I can't get the simple part working: how can I forward all the ...
3
votes
2answers
216 views
How can I manage command line arguments/variables for a script written in Perl?
I am trying to manage numerous arguments that are specified by a user when they execute a command. So far, I have been trying to limit my script design to manage arguments as flags that I can easily ...
2
votes
7answers
91 views
How can match the first value of @ARGV to an array of possible options
I am trying to figure a way to capture the first argument from @ARGV and check its validity by checking it against an array of known valid arguments. I thought I could do this with a simple foreach ...
2
votes
2answers
93 views
In Perl, how do I send CGI parameters on the command line?
Normally i get the data from a webpage but i want to send it from the command line to facilitate debugging.
To get the data i do something like:
my $query = new CGI;
my $username = ...
2
votes
1answer
520 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 = ...
1
vote
3answers
76 views
What's the correct way to handle command line arguments in Perl script?
I'm trying to create a script/application which accepts command line arguments when run. Of course, this is a day-to-day thing, but seeing as this is the first time I'm doing it, I'm looking for some ...
1
vote
3answers
79 views
How to read from a redirected file instead of taking command line parameters
I am writing a program where if no command line arguments are supplied i.e @ARGV == 0, the program takes in three inputs. But, the program has the feature to read any files given as arguments, thus
...
1
vote
3answers
179 views
Perl command line problem
I'm writing a Perl program that will take a few command-line arguments (they'll actually be supplied by another program) and open a pdf to a specific page. I based it off of here (Look at page 5). ...
1
vote
3answers
495 views
How to I use Getopt::Long to parse arguments that may have spaces?
I have a shell script that spits out a line as follows:
prog_name -options ...
To be specific, as an example:
prog_name -filter_arg +define BOOST +noconvtest +actuate-long -disp_arg +define ...
1
vote
4answers
494 views
How to group the arguments while using GetOpt in Perl?
To a perl script that I am writing, there can be a lot (~50) of command line options provided. Most of them are optional, so a call will have only some of the options provided.
I am using ...
1
vote
4answers
239 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
4answers
111 views
How to verify which flags were read using Getopt::Long in Perl?
myscript.pl
my $R;
my $f1 = "f1.log";
my $f2 = "f2.log";
my $f3 = "f3.log";
sub checkflags {
GetOptions('a=s' => \$f1,
'b=s' => \$f2,
'c=s' ...
1
vote
2answers
346 views
How to get the running Perl script's path and name (argv[0] in C)
In C / C++ (bash, too?) the first command-line argument, argv[0], is the binary filename (prefixed by an absolute or relative path as invoked by the user).
In Perl the first command-line argument ...
0
votes
2answers
77 views
Getopt::Long getting a string with spaces into a variable
I'm making a perl script which uses Getopt::Long to parse command line arguments. However, I have an argument which can accept a string (with spaces). How can I get the whole string into a variable. ...
0
votes
3answers
193 views
How to use GetOptions utility to handle 'optional' command-line arguments in Perl?
There are many Perl tutorials explaining how to use GetOptions utility to process only the command-line arguments which are expected, else exit with an appropriate message.
In my requirement I have ...
0
votes
3answers
124 views
perl script argument contains double quotas "
I have a perl script that receives 3 arugments.
First argument is very long and contains spaces and quotes and I actually don't know what size to expect it could be any size . To separate my ...
0
votes
3answers
999 views
Perl - Use of uninitialized value?
So I'm trying to run this code...
my $filePath = $ARGV['0'];
if ($filePath eq ""){
print "Missing argument!";
}
It should check the first command line argument, and tell me if its empty, but it ...
0
votes
4answers
165 views
Getting command line options and their values
I want to log options and their arguments from user command after running the script.
Consider this command:
./test.pl --ip localhost --id 400154 --class firstgrade
...and many other options and ...
0
votes
2answers
266 views
Simple command line handling equivalent of Perl in Python
I have done some basic Perl coding but never something in python. I would like to do the equivalent of sending the file to be read from in the command line option. This file is tab delimited, so split ...
0
votes
5answers
1k views
@ARGV is empty using ActivePerl in Windows 7
I have the following Perl script. I am trying to run it in Windows 7 using ActivePerl:
#!c:\Perl64\bin\perl.exe -w
use strict;
my $mp3splt_exe = 'c:\Program Files (x86)\mp3splt\mp3splt.exe';
my ...
0
votes
1answer
69 views
How do I call pod2usage using my caller's documentation?
I'd like to be able to call pod2usage in a method that encapsulates a lot of standardized command line argument handling, but I can't see how I'd be able to put that handling into a separate module ...
0
votes
4answers
341 views
Copying a string(passed as command line arguments to Perl) into text file
I have a string containing lots of text with white-spaces like:
String str = "abc xyz def";
I am now passing this string as a command line argument to a perl file using C# as in:
Process p = new ...