in reply to Re^2: unix to perl questions
in thread unix to perl questions
The page Use strict and warnings explains how to get your program working under strict. It sounds like in your case the best way to start your scripts would be
#!/usr/local/bin/perl use warnings; use strict;
(The -w command line switch is not needed if you use warnings;.)
If you get errors, please post the exact error messages here; see How do I post a question effectively?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: unix to perl questions
by deyaneria (Acolyte) on Mar 12, 2015 at 03:01 UTC | |
|
Re^4: unix to perl questions
by deyaneria (Acolyte) on Mar 12, 2015 at 02:48 UTC |