Track /etc/gitconfig
[msysgit/mtrensch.git] / lib / perl5 / 5.8.8 / CGI / eg / make_links.pl
bloba0aa824556f64b8ec5abc7463b593ed25d768525
1 #!/usr/local/bin/perl
3 # this is just a utility for creating symlinks from *.txt to *.cgi
4 # for documentation purposes.
5 foreach (<*.cgi>) {
6 ($target=$_)=~s/cgi$/txt/;
7 symlink $_,$target