hello
this one below works if you run the program on the same directory as a.txt
a.txt is an argument
$data_file="a.txt";
open(DAT, $data) || die("Could not open file!");
but, if you run this program from different directory, even with path being specified it won't work
say the program is aa.pl
both aa.pl and a.txt are in /local/program/directory
and from / directory
I do
perl /local/program/directoryaa.pl a.txt
it will complain that a.txt can't be found
what to do ?
this one below works if you run the program on the same directory as a.txt
a.txt is an argument
$data_file="a.txt";
open(DAT, $data) || die("Could not open file!");
but, if you run this program from different directory, even with path being specified it won't work
say the program is aa.pl
both aa.pl and a.txt are in /local/program/directory
and from / directory
I do
perl /local/program/directoryaa.pl a.txt
it will complain that a.txt can't be found
what to do ?