liunx remove line of text code example
Example 1: delete lines text file linux
sed -i '' '/pattern to match/d' ./infile
Example 2: remove line with pattern
Use d option at the end of sed command string for deleting line of matches.
sed -i "" "s/matching_pattern/d" file.txt