Skip to content

Instantly share code, notes, and snippets.

@rectalogic
Last active March 3, 2026 14:02
Show Gist options
  • Select an option

  • Save rectalogic/9d36c83c69146faa974aea6e43e23d85 to your computer and use it in GitHub Desktop.

Select an option

Save rectalogic/9d36c83c69146faa974aea6e43e23d85 to your computer and use it in GitHub Desktop.
Transpose a CSV
$ cat input.csv | python3 -c 'import sys, csv; csv.writer(sys.stdout).writerows(zip(*csv.reader(sys.stdin)))' > output.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment