How to use SED command to delete lines in Linux

   What is SED ? -- Birth of SED      Sed command can be used to delete or remove specific lines which matches a given pattern or in a particular position in a file. Here we will see how to delete lines using sed command with various examples. The following file contains a sample data which is used as input file in all the examples:

 cat file
Linux
unix
fedora
debian
ubuntu

Sed Command to Delete Lines - Based on Position in File

In the following examples, the sed command removes the lines in file that are in a particular position in a file. 1. Delete first line or header line The d option in sed command is used to delete a line. The syntax for deleting a line is:
 sed 'Nd' file
Here N indicates Nth line in a file. In the following example, the sed command removes the first line in a file.
 sed '1d' file
unix
fedora
debian
ubuntu
2. Delete last line or footer line or trailer line The following sed command is used to remove the footer line in a file. The $ indicates the last line of a file.
 sed '$d' file
Linux
unix
fedora
debian
3. Delete particular line This is similar to the first example. The below sed command removes the second line in a file.
 sed '2d' file
Linux
fedora
debian
ubuntu
4. Delete range of lines The sed command can be used to delete a range of lines. The syntax is shown below:
 sed 'm,nd' file
Here m and n are min and max line numbers. The sed command removes the lines from m to n in the file. The following sed command deletes the lines ranging from 2 to 4:
 sed '2,4d' file
Linux
ubuntu
5. Delete lines other than the first line or header line Use the negation (!) operator with d option in sed command. The following sed command removes all the lines except the header line.
 sed '1!d' file
Linux
6. Delete lines other than last line or footer line
 sed '$!d' file
ubuntu
7. Delete lines other than the specified range
 sed '2,4!d' file
unix
fedora
debian
Here the sed command removes lines other than 2nd, 3rd and 4th. 8. Delete first and last line You can specify the list of lines you want to remove in sed command with semicolon as a delimiter.
 sed '1d;$d' file
unix
fedora
debian
9. Delete empty lines or blank lines
 sed '/^$/d' file
The ^$ indicates sed command to delete empty lines. However, this sed do not remove the lines that contain spaces.

Sed Command to Delete Lines - Based on Pattern Match

In the following examples, the sed command deletes the lines in file which match the given pattern. 10. Delete lines that begin with specified character
 sed '/^u/d' file
Linux
fedora
debian
^ is to specify the starting of the line. Above sed command removes all the lines that start with character 'u'. 11. Delete lines that end with specified character
 sed '/x$/d' file
fedora
debian
ubuntu
$ is to indicate the end of the line. The above command deletes all the lines that end with character 'x'. 12. Delete lines which are in upper case or capital letters
 sed '/^[A-Z]*$/d' file
13. Delete lines that contain a pattern
 sed '/debian/d' file
Linux
unix
fedora
ubuntu
14. Delete lines starting from a pattern till the last line
 sed '/fedora/,$d' file
Linux
unix
Here the sed command removes the line that matches the pattern fedora and also deletes all the lines to the end of the file which appear next to this matching line. 15. Delete last line only if it contains the pattern
 sed '${/ubuntu/d;}' file
Linux
unix
fedora
debian
Here $ indicates the last line. If you want to delete Nth line only if it contains a pattern, then in place of $ place the line number. Note: In all the above examples, the sed command prints the contents of the file on the unix or Linux terminal by removing the lines. However the sed command does not remove the lines from the source file. To Remove the lines from the source file itself, use the -i option with sed command.
 sed -i '1d' file
If you dont wish to delete the lines from the original source file you can redirect the output of the sed command to another file.
sed '1d' file  newfile