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;
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;