Skip to content

Instantly share code, notes, and snippets.

@jeffreyiacono
Created October 18, 2012 01:11
Show Gist options
  • Select an option

  • Save jeffreyiacono/3909307 to your computer and use it in GitHub Desktop.

Select an option

Save jeffreyiacono/3909307 to your computer and use it in GitHub Desktop.
fun with columns
$ cat test.csv
cat,dog,mouse
up,down,left,right
red,green,blue
$ cat test.csv | column -t -s,
cat dog mouse
up down left right
red green blue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment