Sophie

Sophie

distrib > Mandriva > 9.0 > i586 > by-pkgid > 1bee744f7c3f5e01503cdb0809ef3b44 > files > 31

perl-CGI-3.00-0.2mdk.noarch.rpm

#!/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
}