Created
August 28, 2012 20:06
-
-
Save rschildmeijer/3503545 to your computer and use it in GitHub Desktop.
table tennis tournament preparation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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