blob: bea2beb01af935f1f8418a378284787835de205f (
plain)
1
2
3
4
5
6
7
|
# Rename Kerberos V4 MIT PC-port filenames to proposed names
# for converting old PC trees on Unix systems.
awk '/^@ / {
if ($3 != $4 && $3 != "-")
print "mv " $3 " " $4
}
' <ren.msg | grep -v '(gone)' | sh -x
|