in reply to Too Late for Drowning Witch/Taint Mode
where script.pl has #!/usr/bin/perl -T. This is ineffectual, since the flags have to be passed straight away to the Perl interpreter. Execute your script one of the following ways instead:perl script.pl
chmod +x script.pl ./script.pl # or: perl -T script.pl
|
|---|