Cross Reference: make_links.pl
xref
: /
osnet-11
/
usr
/
src
/
cmd
/
perl
/
5.8.4
/
distrib
/
lib
/
CGI
/
examples
/
make_links.pl
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
#!/
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
}