: preprocess-DeleteBlankLines.bat : batch file to delete the blank lines before we fix the CRLF's that the FCC leaves in the "text" files : n6lhv@arrl.net : created: 07-June-2005 : updated: 07-June-2005 : 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-DeleteBlankLines.pl %fileDat% del %fileDat%.dat ren %fileDat%-new.dat %fileDat%.dat