Tagged Questions
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 ...
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
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
519 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
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 ...
0
votes
1answer
240 views
How can I pass command line flags with ARGV while specifying a specific order to the flags?
I am wanting to integrate the use of ARGV into my script. After messing with an example of a simple usage I found on Stack Overflow, I was able to make the script "enforce" the use of single command ...
-2
votes
2answers
116 views
Filehandle open() and the split variable
I am a beginner in Perl.
What I do not understand is the following:
To write a script that can:
Print the lines of the file $source with a comma delimiter.
Print the formatted lines to an output ...