|
Posted by RedGrittyBrick on May 18, 2008, 6:16 am
Please log in for more thread options
sanozuke wrote:
> I wish to use the perlfaq in a few days one by one.
I've no idea what that means.
> Perl code should be done in a textpad
You can write and edit Perl code in any text editor. There are IDEs (see
perldoc -q ide) but I expect most people use a text editor.
> saved with .pl extension
This isn't necessary but it does have advantages. The main one is that
on Windows, you can associate the .pl extension with the perl.exe
program required to run the perl script.
> and be called out by the command line?
I'm unsure what you mean.
> In the OS i will have 2 things the file.pl and the command line?
I'm unsure what you mean.
On Windows, you should be able to execute script.pl by either clicking
on it's name in Windows explorer, by clicking on a desktop shortcut to
script.pl or by opening a command-prompt window and typing either
"script.pl" or "perl script.pl".
See perldoc perlrun.
--
RGB
|