Commit 55d7eba4 authored by Fred Drake's avatar Fred Drake

Don't make backups.

Use "mv" instead of "ln -s" to install the new names.
parent 9d62eb0e
#!/depot/gnu/plat/bin/perl -i~
#!/depot/gnu/plat/bin/perl -i
# read the labels, then reverse the mappings
require "labels.pl";
......@@ -33,6 +33,6 @@ while (<>) {
}
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";
......@@ -33,6 +33,6 @@ while (<>) {
}
foreach $oldname (keys %newnames) {
# or mv
system("ln -s $oldname $newnames{$oldname}");
# or ln -s
system("mv $oldname $newnames{$oldname}");
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment