Results 1 to 2 of 2
Hi everyone
Could anyone tell me the commands to delete the first row of a text file, i tried sed but it didnt work....
- 05-13-2008 #1Just Joined!
- Join Date
- Oct 2007
- Posts
- 2
Deleting a row from a text file using linux command
Hi everyone
Could anyone tell me the commands to delete the first row of a text file, i tried sed but it didnt work.
- 05-13-2008 #2Linux Newbie
- Join Date
- Mar 2008
- Location
- Hyderabad
- Posts
- 109
sed -e '1d' textfile > resultfile


Reply With Quote