Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Taint checking, File::Find and Cwd

by ncw (Friar)
on Sep 25, 2000 at 15:53 UTC ( [id://33902]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -wT
    
    ...
    # This produces "Insecure dependency in chdir while running with -T
    # switch"
    find( sub { print }, "." );
    
  2. or download this
    #!/usr/bin/perl -wT
    
    ...
    # This produces "Insecure dependency in system while running with -T
    # switch"
    system "ls " . cwd();
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://33902]
Approved by root
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-04-20 00:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found