I have this simple code to execute, but have failed.
a.csh
#! /bin/csh -f
`perl a.pl`
a.pl
#use perl
eval 'exec perl -w -S $0 ${1+"$@"}'
if 0;
use Cwd;
print "here.\n";
When I run a.csh
, it reports an error as below.
here: Command not found
I am not sure what that means; any suggestion is welcome.