home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / demo_hashdir.pl < prev    next >
Text File  |  2003-11-07  |  186b  |  10 lines

  1. use Attribute::Handlers autotie => { Dir => 'Tie::Dir qw(DIR_UNLINK)' };
  2.  
  3. my %dot : Dir('.', DIR_UNLINK);
  4.  
  5. print join "\n", keys %dot;
  6.  
  7. delete $dot{killme};
  8.  
  9. print join "\n", keys %dot;
  10.