Blame src/config/ren2long

Packit fd8b60
#!/bin/sh
Packit fd8b60
#
Packit fd8b60
# Shell script that changes names that have been truncated to 8.3 format
Packit fd8b60
# back to their original longer name. The awk script produces a script with
Packit fd8b60
# lines of the following format:
Packit fd8b60
#     if [ -f <short> ]; then echo ::mv <short> <long> ; mv <short> <long> ; fi
Packit fd8b60
# These lines then get executed in bin/sh.
Packit fd8b60
#
Packit fd8b60
find . -type f -print | gawk -f $0.awk | sh -x 2> /dev/null