Use "mv" instead of "ln -s" to install the new names.
-#!/depot/gnu/plat/bin/perl -i~
+#!/depot/gnu/plat/bin/perl -i
# read the labels, then reverse the mappings
require "labels.pl";
}
foreach $oldname (keys %newnames) {
-# or mv
- system("ln -s $oldname $newnames{$oldname}");
+# or ln -s
+ system("mv $oldname $newnames{$oldname}");
}
-#!/depot/gnu/plat/bin/perl -i~
+#!/depot/gnu/plat/bin/perl -i
# read the labels, then reverse the mappings
require "labels.pl";
}
foreach $oldname (keys %newnames) {
-# or mv
- system("ln -s $oldname $newnames{$oldname}");
+# or ln -s
+ system("mv $oldname $newnames{$oldname}");
}