There is a similar question about Windows, but it won't work for Unix based computers (OS X specifically).
I want to type the name of a file, say example.pl or example.pl parametertext.txt, and have it know to execute perl.
I specified #!/usr/bin/perl in the file so it can find the executable. Instead, I get the message:
bash: example.pl: command not found
#!/usr/bin/perl? With no-spaces (not sure if that matters) and a full path? Also, is your .pl file executable? (trychmod +x example.pl). Not to mention if.isn't in yourPATH, then you need to run./example.pl, rather thanexample.pl. – Dan Fego Jan 25 '12 at 19:40last | ctime.plis what I'm trying to execute-bash: ctime.pl: command not found– Chris Jan 25 '12 at 19:46