- or download this
~/MyPerl
|
...
|
|_ a_program.out
- or download this
use strict;
use warnings;
...
# do something with @output
# Rest of the code
- or download this
~/MyPerl $ perl -c src/mycode.pl
mycode.pl syntax OK
- or download this
~/MyPerl $ perl src/mycode.pl
- or download this
Can't exec "./a_program.out": No such file or directory at
src/mycode.pl line 217.