Create combine-unf.bat

This commit is contained in:
mattbk
2015-02-04 16:14:01 -06:00
parent 785f42beb0
commit e4708a4623

12
combine-unf.bat Normal file
View File

@ -0,0 +1,12 @@
:C.2.3.1 Summary
:combine-unf.bat appends all files with a *.unf extension in the working directory. This program was used to combine output of HAngle.
:C.2.3.2 Requirements
:combine-unf.bat must be located in the same directory as the files to be appended.
:C.2.3.3 User Input
:None required.
:C.2.3.4 Output
:A file named ”combine-unf-output.txt,” containing the appended *.unf files, is produced. The source files are not modified.
:C.2.3.5 Listing
dir *.unf /b > combine-unf-filelist.txt
FOR %%1 in (*.unf) do type %%1 >> combine-unf-output.txt