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 / ch3 / regular < prev    next >
Encoding:
Text File  |  1992-10-18  |  100 b   |  7 lines

  1. #!/usr/bin/perl
  2. while (<>) {
  3.     chop;
  4.     next unless -f $_;      # ignore specials
  5.     # Your code here.
  6. }
  7.