Skip to content

Instantly share code, notes, and snippets.

@packetchef
Created August 1, 2020 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save packetchef/062267156509873d8887997fb24ff872 to your computer and use it in GitHub Desktop.
Save packetchef/062267156509873d8887997fb24ff872 to your computer and use it in GitHub Desktop.
# echo the element in the first column
> for /f "tokens=1" %1 in (INPUT.TXT) do echo %i
# Concatenate all CSVs into one file
> for %f in (*.CSV) do type %f >> TOTALS.TXT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment