Delete line in sed

Code examples

3
0

sed remove line containing

sed '/pattern to match/d' ./infile
1
0

delete line in sed

sed -e "/your_pattern/d" file 
sed -e "/your_pattern/,+2 d" file  # 2 lines after the pattern
sed -e '5,5d"  # remove 5th line
1
0

delete a line starting with sed

# Delete all lines starting with '#'
$ sed -i '/^#/d' filepath

Similar pages

Similar pages with examples

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................