: preprocess-FixEmbeddedCRLFs.bat : batch file to fix the CRLF's that the FCC leaves in the "text" files : n6lhv@arrl.net : created: 26-December-2004 : updated: 27-December-2004 : functional dependencies : -all of the .DAT files have been successfully uncompressed : Set the correct parameters SET fileDat=%1 : Ensure this file doesn't exist del %fileDat%-new.dat : transform the file appropriately perl -w preprocess-FixEmbeddedCRLFs.pl %fileDat% del %fileDat%.dat ren %fileDat%-new.dat %fileDat%.dat