“SED eliminar la línea que contiene” Código de respuesta

SED eliminar la línea que contiene

sed '/pattern to match/d' ./infile
Misty Magpie

Eliminar una línea que comienza con SED

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

Eliminar línea en SED

# -i here update the file, try with and without -i, 
sed -i -e '/yourpattern/,$d' file # delete everyhing afer the pattern
sed -i -e "/your_pattern/,+2 d" file  # 2 lines after the pattern
sed -i -e "5,5d" file # remove 5th line
sed '10,$d' pes.com # delete everything after 10th line
sed '7,36!d' tmp.com > tmp_coord # specific lines to a file
sed -i -e '29,36d' pes.com delete specific lines 
Hutch Polecat

SED Eliminar la línea antes del partido

Use d option at the end of sed command string for deleting line of matches.
tac | sed -i "" "s/matching_pattern/I+1 d" file.txt | tac #
Armandres

Respuestas similares a “SED eliminar la línea que contiene”

Preguntas similares a “SED eliminar la línea que contiene”

Más respuestas relacionadas con “SED eliminar la línea que contiene” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código