[prev] [index] [next]

Using Perl (cont)

Advisable to always use -w option.

Causes Perl to print warnings about common errors.

perl -w PerlCodeFile.pl

perl -w -e 'PerlCode'

Can use options with #!

#!/usr/local/bin/perl -w

PerlCode