레이블이 sed인 게시물을 표시합니다. 모든 게시물 표시
레이블이 sed인 게시물을 표시합니다. 모든 게시물 표시

sed delete line

You can delete line in text by sed on linux.

I will show you how to delete line by sed on linux.

Look at the text contents file below.
apple
banana
pineapple
melon
watermelon

I am going to delete what containing keyword line 'apple' like below result.
banana
melon
watermelon

you can use the following command.

sed '/apple/d' fruits.txt