From 785f42beb08b75cd4f33fb7c0eddd5e1cc404b4f Mon Sep 17 00:00:00 2001 From: mattbk Date: Wed, 4 Feb 2015 16:04:26 -0600 Subject: [PATCH] Create combine-fit.bat --- combine-fit.bat | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 combine-fit.bat diff --git a/combine-fit.bat b/combine-fit.bat new file mode 100644 index 0000000..ff2d43b --- /dev/null +++ b/combine-fit.bat @@ -0,0 +1,13 @@ +:C.2.2.1 Summary +:combine-fit.bat appends all files with a *.fit extension in the working directory. +:This program was used to combine output of HMatch. +:C.2.2.2 Requirements +:combine-fit.bat must be located in the same directory as the files to be appended. +:C.2.2.3 User Input +:None required. +:C.2.2.4 Output +:A file named ”combine-fit-output.txt” with the appended *.fit files within. The source files are not modified. +:C.2.2.5 Listing + +dir *.fit /b > combine-fit-filelist.txt +FOR %%1 in (*.fit) do type %%1 >> combine-fit-output.txt