Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -T
    
    ...
    my $temp_fails = [ $a, $b ];
    __END__
    Insecure dependency in `` while running with -T switch at ./foo line 9
    +.
    
  2. or download this
    #!/usr/bin/perl -T
    
    ...
    my $b = `mktemp /tmp/temp.XXXXXX`;
    my $temp_fails = [ $a, $b ];
    __END__