I have csv file and want to output a new csv file, that only contains the first 10 lines form the original one. I\'ve so far only found code to delete single lines or lines that
Get-Content in.csv -Head 10 > out.csv