sed -i '$d' hobba
-i: to change the file itself, not copy contents to another file or something
$d: delete the last line
hobba: the file name
Showing posts with label sed. Show all posts
Showing posts with label sed. Show all posts
Monday, December 28, 2009
How to delete certain lines of text from a file in Bash using sed
"sed -i 1,+2d file_name"
deletes starting from line '1' and the next '2' lines, i.e. deletes the first 3 lines
deletes starting from line '1' and the next '2' lines, i.e. deletes the first 3 lines
Monday, August 24, 2009
Subscribe to:
Posts (Atom)