“Usuń linię w SED” Kod odpowiedzi

SED Usuń linię zawierającą

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

Usuń linię zaczynającą się od SED

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

Usuń linię w 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

Odpowiedzi podobne do “Usuń linię w SED”

Pytania podobne do “Usuń linię w SED”

Więcej pokrewnych odpowiedzi na “Usuń linię w SED” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu