Re: Batch Processing?

On 21 Oct 2001 at 16:25, Alex Mehra wrote:

> Is there any way to run Tidy on the entire contents of a directory under
> windows ?

Something like
 for %i in (*.*) do tidy [options] -m %i 
or
 for %i in (*.*) do tidy [options] %i > %i.new
usually works for me, but it might depend on what options you want to 
set.

Received on Monday, 22 October 2001 05:05:20 UTC