Convert VMS format text files to Unix ones.
Done like so. This isn't all of them; just the obvious ones.
for f in $(file decus/**/*(.) | sed s/:// \
| awk '$2 == "data" {print $1}'); do
./convert-vms-record-fmt < $f > foo;
mv foo $f;
done
Loading
Please sign in to comment