erez wrote:
>
> i tried :::: for %%f in (*.txt) do type %%f | more
> pause
> cls
> it didnot stoped ,please tell me how to use the pipeline or the "><>>" signes
> thanx
Erez,
I stopped using Command.com many years ago because of things like this.
I use 4Dos.com now. As I remember in Command.com, you can't do what you
want to do.
In 4Dos.com the line would be:
for %f in (*.txt) do (type %f | more^ pause^ cls)
Even better, in 4Dos you could use the following line instead:
List *.txt
This built in command does everything you described and gives you MANY
more capabilities.
If you are interested in 4Dos, visit their page and get a demo.
http://www.jpsoft.com/
PS
I have no interest in JP Software. My interest is helping users make
better use of their computers.
--
Terry Constant
mailto:constant at flash.net
|
Not Categorized, Please Help
|
|