Home
Search
Contact
Guestbook
News
Donate
Sections
Computers
Passions
Photo Gallery
Grandmother Tips
DIY (Do it yourself)
Misc
Walks around Grenoble
Online generators
Links
Blog
Actions
Language:
RSS flow:
Remove first line of a file
Introduction
Using sed, it's possible to remove the first line of a file
Example:
sed '1d' file.txt
sed '1d' file.txt > file2.txt
Go back