Skip to content

Instantly share code, notes, and snippets.

@dbalduini
Last active July 21, 2018 01:19
Show Gist options
  • Save dbalduini/9906406610ce291bee10be3bb999e7b5 to your computer and use it in GitHub Desktop.
Save dbalduini/9906406610ce291bee10be3bb999e7b5 to your computer and use it in GitHub Desktop.
Join csv by unique column
#!/bin/bash
awk -F'|' '(!a[$1]++){print $0"|"FILENAME;}' *.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment