From e4708a4623d1d09bca569c7da56fe60c91f7773f Mon Sep 17 00:00:00 2001 From: mattbk Date: Wed, 4 Feb 2015 16:14:01 -0600 Subject: [PATCH] Create combine-unf.bat --- combine-unf.bat | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 combine-unf.bat diff --git a/combine-unf.bat b/combine-unf.bat new file mode 100644 index 0000000..4991955 --- /dev/null +++ b/combine-unf.bat @@ -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