codice:
cacao74@tweety:~/tmp$ cat cacao.html
<html>
<head>
<meta NAME="description" CONTENT="testo1testo1testo1testo1">
<meta NAME="keywords" CONTENT="testo2testo2testo2testo2">
<meta NAME="author" CONTENT="cacao74">
</head>
...
</html>
cacao74@tweety:~/tmp$ cat cacao.html | sed -e "/<meta NAME=\"description\" CONTENT=\".*\">/d" cacao.html
<html>
<head>
<meta NAME="keywords" CONTENT="testo2testo2testo2testo2">
<meta NAME="author" CONTENT="cacao74">
</head>
...
</html>
Per applicare le modifiche direttamente nel file (inline), rileggiti la pagina di manuale, o riguarda meglio qualche thread sul forum.
ciao