Skip to content

Instantly share code, notes, and snippets.

@nkrumm
Created July 4, 2014 12:35
Show Gist options
  • Select an option

  • Save nkrumm/5a879e6a58717f048855 to your computer and use it in GitHub Desktop.

Select an option

Save nkrumm/5a879e6a58717f048855 to your computer and use it in GitHub Desktop.
Pretty Printing CSV and TSV functions
function csv() { cat "$@" | column -t -s, | less -S; }
function tsv() { cat "$@" | column -t -s"\t" | less -S; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment