
FishMonger
Veteran
Apr 30, 2009, 5:55 AM
Post #2 of 2
(268 views)
|
|
Re: [script123] #!/usr/bin/perl -U
[In reply to]
|
Can't Post
|
|
http://perldoc.perl.org/perlrun.html You should read the whole doc, but here's part of it.
-U allows Perl to do unsafe operations. Currently the only "unsafe" operations are attempting to unlink directories while running as superuser, and running setuid programs with fatal taint checks turned into warnings. Note that the -w switch (or the $^W variable) must be used along with this option to actually generate the taint-check warnings.
|