Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Print @ARGV windows and linux. Different results

Status
Not open for further replies.

jr8rdt

IS-IT--Management
Feb 9, 2006
59
US
I run below program on windows it displays the content of @ARGV.

But when I run this program on Linux redhat, it doesn't print the @ARGV. $ARGV[x] doesn't work either.

any explanation


my $file_feed = shift or die "To run the program: realtime_all <file> --> System Error: Missing Arguments ";
open (INDEX, $file_feed) or die "Can't open $file_feed: $!";
@ARGV = <INDEX>;
chomp @ARGV;
close (INDEX);
print @ARGV;

 
see if the file has anything in it:

Code:
my $file_feed = shift or die "To run the program: realtime_all <file>  --> System Error: Missing Arguments ";
open (INDEX, $file_feed) or die "Can't open $file_feed: $!";
print <INDEX>;
#@ARGV = <INDEX>;
#chomp @ARGV;
close (INDEX);
#print @ARGV;

------------------------------------------
- Kevin, perl coder unexceptional! [wiggle]
 
Yes. the file has something in it.

file1.txt
file2.txt
file3.txt
 
ah..found something.

Linux doesn't like chomp @ARGV;

this code won't print

my $file_feed = shift or die "To run the program: realtime_all <file> --> System Error: Missing Arguments ";
open (INDEX, $file_feed) or die "Can't open $file_feed: $!";
@ARGV = <INDEX>;
chomp @ARGV;
print @ARGV;
close (INDEX);

but this will

print @ARGV;
chomp @ARGV;

why is that???
 
find the answer. looks like it is because the file was created in win and hence the problem. when I re-typed the file again in linux it works fine.


 
You haven't changed the value of $/ have you?

[red]"... isn't sanity really just a one trick pony anyway?! I mean, all you get is one trick, rational thinking, but when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick[/red]
 
On a *nix box, \n is \012 whereas on a win box \n is \015\012. So if you try to chomp a win file on a *nix box you will leave behind a \015.

[red]"... isn't sanity really just a one trick pony anyway?! I mean, all you get is one trick, rational thinking, but when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick[/red]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top