source: for-distributions/trunk/bin/windows/perl/lib/CGI/eg/make_links.pl@ 14489

Last change on this file since 14489 was 14489, checked in by oranfry, 17 years ago

upgrading to perl 5.8

File size: 196 bytes
Line 
1#!/usr/local/bin/perl
2
3# this is just a utility for creating symlinks from *.txt to *.cgi
4# for documentation purposes.
5foreach (<*.cgi>) {
6 ($target=$_)=~s/cgi$/txt/;
7 symlink $_,$target
8}
Note: See TracBrowser for help on using the repository browser.