Created
August 19, 2014 16:36
-
-
Save jeremysimmons/48ee9e4e099847b17b00 to your computer and use it in GitHub Desktop.
powershell csv import skip lines
This file contains 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
$csvPath = 'C:\Temp\Whatever.csv' | |
$csvData = Get-Content -Path $csvPath | Select-Object -Skip 2 | ConvertFrom-Csv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment