Re: Tidy question

* Tomas Macek [Fri, 19/09/2003 at 09:48 +0200]
> 
> Hello.
> Can I with Tidy validate more than one file at once? I have in
> directory about 300 html pages and I need validate every page. I must
> work always with one file only or exist some batch?

for file in *.html
do
  tidy -i -raw -f $file.err $file
done

Received on Friday, 19 September 2003 04:16:39 UTC