Re: cistenie html

From: Ing. Vlastimil Pospíchal (vpospichal@centrum.cz)
Date: 25. 01. 2002, 12:44 CET


On Fri, Jan 25, 2002 at 11:40:56AM +0100, Miro Vesely wrote:
> Pozname soft, ktory by ocistil HTML od prikazov
> <font cokolvek> a ineho formatovania? Hromadne
> a bez pytania...
> Mirex. 

Pokud chceš odstranit pouze tagy <font> ve všech *.htm
v aktuálním adresáři:

#!/bin/bash
for soubor in *.htm; do
	sed -e 's/<\/?font[^>]*>//g' $soubor >${soubor%\.htm}.ht2
done

Výsledek je v souborech *.ht2, jak jsi určitě pochopil.

Bye Kit
-- 
Ing. Vlastimil Pospíchal
http://www.hoteldrnholec.cz

Už nikdy virus, ať žije Linux!



This archive was generated by hypermail 2.1.2 : 25. 01. 2002, 14:43 CET