Eliminar el archivo de texto de líneas Linux
sed -i '' '/pattern to match/d' ./infile
Thankful Teira
sed -i '' '/pattern to match/d' ./infile
grep -v "pattern" file > temp && mv temp file