Sophie

Sophie

distrib > Mandriva > current > i586 > media > main-updates > by-pkgid > 11c6fa7797f3dffd1861359aaf1ef973 > files > 29

perl-CGI-3.510.0-0.1mdv2010.2.noarch.rpm

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