Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista General Discussion > Multiple commands in batch file loop

Reply
Thread Tools Display Modes

Multiple commands in batch file loop

 
 
mrgou
Guest
Posts: n/a

 
      03-13-2008
Hi,

In a batch file, is it possible to execute more than one command for
each iteration of a FOR loop (i.e. more than one command for each file
of the set)?

Thanks!

mrgou
 
Reply With Quote
 
 
 
 
Gordon Bell
Guest
Posts: n/a

 
      03-13-2008

Create a secondary batch file that processes each file and call it like
this:

for %f in (*.txt) do call process.bat %f


=process.bat=
@Echo Off
Command1.exe %1
Command2.exe %1
etc...


HTH


mrgou wrote:
> Hi,
>
> In a batch file, is it possible to execute more than one command for
> each iteration of a FOR loop (i.e. more than one command for each file
> of the set)?
>
> Thanks!
>
> mrgou

 
Reply With Quote
 
Gordon Bell
Guest
Posts: n/a

 
      03-13-2008

Best to include the PowerShell equivalent: ;-)

gci *.txt | % {Command1.exe $_.FullName; Command2.exe $_.FullName}


Gordon Bell wrote:
>
> Create a secondary batch file that processes each file and call it like
> this:
>
> for %f in (*.txt) do call process.bat %f
>
>
> =process.bat=
> @Echo Off
> Command1.exe %1
> Command2.exe %1
> etc...
>
>
> HTH
>
>
> mrgou wrote:
>> Hi,
>>
>> In a batch file, is it possible to execute more than one command for
>> each iteration of a FOR loop (i.e. more than one command for each file
>> of the set)?
>>
>> Thanks!
>>
>> mrgou

 
Reply With Quote
 
Bob F.
Guest
Posts: n/a

 
      03-13-2008
Any relation to the DEC Gordon Bell?

--
BobF.
"Gordon Bell" <> wrote in message
news:eAPN%...
>
> Best to include the PowerShell equivalent: ;-)
>
> gci *.txt | % {Command1.exe $_.FullName; Command2.exe $_.FullName}
>
>
> Gordon Bell wrote:
>>
>> Create a secondary batch file that processes each file and call it like
>> this:
>>
>> for %f in (*.txt) do call process.bat %f
>>
>>
>> =process.bat=
>> @Echo Off
>> Command1.exe %1
>> Command2.exe %1
>> etc...
>>
>>
>> HTH
>>
>>
>> mrgou wrote:
>>> Hi,
>>>
>>> In a batch file, is it possible to execute more than one command for
>>> each iteration of a FOR loop (i.e. more than one command for each file
>>> of the set)?
>>>
>>> Thanks!
>>>
>>> mrgou


 
Reply With Quote
 
Gordon Bell
Guest
Posts: n/a

 
      03-13-2008

No, I get asked often though. He's at MS Research now.

http://research.microsoft.com/users/gbell/


Bob F. wrote:
> Any relation to the DEC Gordon Bell?

 
Reply With Quote
 
Bob F.
Guest
Posts: n/a

 
      03-13-2008
yup...we were business acquaint nesses during his DEC and my Heath Co. days.

--
BobF.
"Gordon Bell" <> wrote in message
news:...
>
> No, I get asked often though. He's at MS Research now.
>
> http://research.microsoft.com/users/gbell/
>
>
> Bob F. wrote:
>> Any relation to the DEC Gordon Bell?


 
Reply With Quote
 
Zanten, Ben van
Guest
Posts: n/a

 
      03-13-2008
Hi,
this newsgroup is about powershell, not batch, but I'll answer anyway.
You don't need to use a separate batchfile, you can do that in the same
batch by using ( and ) like this:

For %%f in (*.txt) do (
Command1 %1
Command2 %1
)

Greetz,
Ben

"Gordon Bell" <> wrote in message
news:...
>
> Create a secondary batch file that processes each file and call it like
> this:
>
> for %f in (*.txt) do call process.bat %f
>
>
> =process.bat=
> @Echo Off
> Command1.exe %1
> Command2.exe %1
> etc...
>
>
> HTH
>
>
> mrgou wrote:
>> Hi,
>>
>> In a batch file, is it possible to execute more than one command for
>> each iteration of a FOR loop (i.e. more than one command for each file
>> of the set)?
>>
>> Thanks!
>>
>> mrgou


 
Reply With Quote
 
Stroud
Guest
Posts: n/a

 
      02-18-2009

Hey even I was trying to find an answer for the same problem wit
commands in loop! Here i found some help with the 'batch files for loop
(http://forums.techarena.in/software-...tm#post4249235)
I hope this helps you guys too

--
Strou
-----------------------------------------------------------------------
Stroud's Profile: http://forums.techarena.in/members/stroud.ht
View this thread: http://forums.techarena.in/vista-help/931481.ht

http://forums.techarena.i

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
batch file help DarthRevan561 Windows Vista General Discussion 6 02-02-2008 12:00 AM
Batch file Bob Windows Vista General Discussion 2 01-20-2008 12:39 PM
Batch file Bob Windows Vista File Management 0 01-06-2008 07:39 PM
batch file calling exe file problem JPS Windows Vista Security 1 12-20-2007 12:18 AM
Need help with batch file n o s p a m p l e a s e Windows Vista General Discussion 11 10-14-2007 06:35 AM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59