Skip to content

Instantly share code, notes, and snippets.

@mladenp
Created June 1, 2017 05:14
Show Gist options
  • Save mladenp/63be4c607a92be0a3445f309207200a1 to your computer and use it in GitHub Desktop.
Save mladenp/63be4c607a92be0a3445f309207200a1 to your computer and use it in GitHub Desktop.
Remove First line of the file
tail -n +2 "$FILE" > "$FILE.tmp" && mv "$FILE.tmp" "$FILE"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment