- #1
rama1001
- 132
- 1
Hi,
I am in process of leraning Linux. I have been structed in understanding of command line arguments and @ARGV in perl.
What is command line arguments? Really, i have no idea.
Though, i have implemented a short program in perl to list this command line arguments but i couldn't see any list when i run my program.
#! /usr/bin/perl
foreach (@ARGV) {
print "$_\n";
}
Can anyone help with basic information what does this command line arguments and how the perl is accessing them?
Thank you.
I am in process of leraning Linux. I have been structed in understanding of command line arguments and @ARGV in perl.
What is command line arguments? Really, i have no idea.
Though, i have implemented a short program in perl to list this command line arguments but i couldn't see any list when i run my program.
#! /usr/bin/perl
foreach (@ARGV) {
print "$_\n";
}
Can anyone help with basic information what does this command line arguments and how the perl is accessing them?
Thank you.