How do I run a Perl script on OS X?
I honestly can't find the answer anywhere! Presumably I have to run a command in Terminal but what?
(I know this is a real basic and stupid question)
|
|
You can run your
|
|||||
|
|
A good tutorial on Perl in OSX can be found here: http://www.mactech.com/articles/mactech/Vol.18/18.09/PerlforMacOSX/index.html A generic documentation on executing Perl code is of course perldoc perlrun. To answer your question directly: You can run a perl script on any Unix system by either having the code evaluated and executed from command line:
Or you can save your Perl script to a file (customarily having
You can also execute a script from a file by running perl interpreter as the command and giving the script as a parameter (in this case execute permissions to the script are not needed):
|
||||
|
|
|
The easiest way to run a perl script is with the option:
However, you may find it more useful to add a shebang line at the top of the perl file.
In order to execute this script, you need to add execute permissions to your program. Run:
Now, in order to run your script, you can simply type:
|
|||
|
|