Skip to content

Instantly share code, notes, and snippets.

@bigga
Created June 29, 2022 04:09
Show Gist options
  • Save bigga/f9c5fc6d8af5a8380f785b310ce0642c to your computer and use it in GitHub Desktop.
Save bigga/f9c5fc6d8af5a8380f785b310ce0642c to your computer and use it in GitHub Desktop.
Append all csv files without header
#https://apple.stackexchange.com/questions/80611/merging-multiple-csv-files-without-merging-the-header
awk '(NR == 1) || (FNR > 1)' *.csv > out.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment