make_links.pl revision 7c478bd95313f5f23a4c958a745db2134aa03244
#!/usr/local/bin/perl
# this is just a utility for creating symlinks from *.txt to *.cgi
# for documentation purposes.
foreach (<*.cgi>) {
($target=$_)=~s/cgi$/txt/;
symlink $_,$target
}