Skip to content

Instantly share code, notes, and snippets.

@ceylanb
Created October 4, 2023 14:22
Show Gist options
  • Select an option

  • Save ceylanb/87c532a1217aef34241b0b8818703863 to your computer and use it in GitHub Desktop.

Select an option

Save ceylanb/87c532a1217aef34241b0b8818703863 to your computer and use it in GitHub Desktop.
Pretty CSV MacOS
function pretty_csv {
perl -pe 's/((?<=,)|(?<=^)),/ ,/g;' "$@" | column -t -s, | less -F -S -X -K
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment