Skip to content

Instantly share code, notes, and snippets.

@jeremysimmons
Created August 19, 2014 16:36
Show Gist options
  • Save jeremysimmons/48ee9e4e099847b17b00 to your computer and use it in GitHub Desktop.
Save jeremysimmons/48ee9e4e099847b17b00 to your computer and use it in GitHub Desktop.
powershell csv import skip lines
$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