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 / make_links.pl < prev    next >
Perl Script  |  2003-11-07  |  196b  |  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.