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();