Created
March 1, 2018 18:56
-
-
Save bryaneaton/f4439ae3e9591242378597ce3d318041 to your computer and use it in GitHub Desktop.
Lightweight CSV viewer using a Powershell function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .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