blob: a0aa824556f64b8ec5abc7463b593ed25d768525 (
plain)
1
2
3
4
5
6
7
8
|
#!/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
}
|