home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / ActivePerl-5.8.4.810-MSWin32-x86.msi / _c3f8f4fcbf717e64c6701aa6844630ec < prev    next >
Encoding:
Text File  |  2004-06-01  |  204 b   |  9 lines

  1. #!/usr/local/bin/perl
  2.  
  3. # this is just a utility for creating symlinks from *.txt to *.cgi
  4. # for documentation purposes.
  5. foreach (<*.cgi>) {
  6.     ($target=$_)=~s/cgi$/txt/;
  7.     symlink $_,$target
  8. }
  9.