Skip to content

Instantly share code, notes, and snippets.

@WilliamQLiu
Last active August 29, 2015 14:14
Show Gist options
  • Save WilliamQLiu/2ff51a9f560a2ce9c936 to your computer and use it in GitHub Desktop.
Save WilliamQLiu/2ff51a9f560a2ce9c936 to your computer and use it in GitHub Desktop.
Remove first line of a csv file with 'sed'
$sed -i '1d' file.csv # Remove the first line
$sed -i '2d' file.csv # Remove the second line
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment