git-svn-id: https://192.168.0.254/svn/Proyectos.AbetoArmarios_Web/trunk@8 5f5cdc87-09bc-1947-a3a7-c45bb6b47c2a
9 lines
204 B
Perl
9 lines
204 B
Perl
#!/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
|
|
}
|