Skip to content

Instantly share code, notes, and snippets.

@rschildmeijer
Created August 28, 2012 20:06
Show Gist options
  • Save rschildmeijer/3503545 to your computer and use it in GitHub Desktop.
Save rschildmeijer/3503545 to your computer and use it in GitHub Desktop.
table tennis tournament preparation
export from google doc (csv)
tail -n +2 pingis_test #remove column headers
split -l5 pingis_test temp/
for f in *; do awk 'BEGIN{FS=","} {print $1 " " $2 " " $3}' "$f" && echo "--------------"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment