[clue] perl again

Raymond DeRoo rderoo at deroo.net
Wed Apr 25 16:37:09 MDT 2012


David:

>     #!/usr/bin/perl -w
>     use strict;

Assuming you are using a recent version of perl ( 5.6+ ) hen you shouldn't be using "-w". It's been replaced with "use warnings" instead. 

So start with:

#!/usr/bin/perl -T
use warnings;
use strict;

-T tells perl to treat data coming from user space as being "tainted". 

Cheers,
Raymond 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://cluedenver.org/pipermail/clue/attachments/20120426/8e20639a/attachment.html 


More information about the clue mailing list