Skip to content

Instantly share code, notes, and snippets.

@bryaneaton
Created March 1, 2018 18:56
Show Gist options
  • Save bryaneaton/f4439ae3e9591242378597ce3d318041 to your computer and use it in GitHub Desktop.
Save bryaneaton/f4439ae3e9591242378597ce3d318041 to your computer and use it in GitHub Desktop.
Lightweight CSV viewer using a Powershell function
# .NET GridView
Import-Csv yourfile.csv |Out-GridView
# Console Viewer
Import-Csv yourfile.csv |Format-Table -AutoSize
Import-Csv yourfile.csv |Format-List
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment