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'.
0 comments:
Post a Comment