views:

21

answers:

1

I found the bat file from here:

http://www.dostips.com/DtCodeBatchFiles.php#Batch.FindAndReplace

I want to run another command after this bat, but it doesn't work. I guess there must be something wrong the the code the site provides. Anyone can give me a clue? Thanks.

+1  A: 

You can chain commands in dos using the && for example

echo hello&&echo world
Shay Erlichmen
Got it, thanks!
Frankel
@Frankel: "Thanking" on stackoverflow works by upvoting answers and marking the most helpful answer as accepted.
0xA3