home *** CD-ROM | disk | FTP | other *** search
/ ftp.cse.unsw.edu.au / 2014.06.ftp.cse.unsw.edu.au.tar / ftp.cse.unsw.edu.au / pub / doc / languages / perl / nutshell / ch4 / unlink.chk < prev    next >
Encoding:
Text File  |  1992-10-18  |  101 b   |  4 lines

  1. #!/usr/bin/perl
  2. @cannot = grep(!unlink($_), @ARGV);
  3. die "$0: could not unlink @cannot\n" if @cannot;
  4.