Answers for "How can I remove the first line of a text file using bash/sed script?"

1

sed remove first line

tail -n +2 "$FILE" > "$FILE.tmp" && mv "$FILE.tmp" "$FILE"
Posted by: Guest on July-17-2020
0

How can I remove the first line of a text file using bash/sed script?

tail -n +2 "$FILE"
Posted by: Guest on November-20-2020

Code answers related to "How can I remove the first line of a text file using bash/sed script?"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language