| 1. |
Solve : Help with making a bat file for log filing? |
|
Answer» I'm looking to make a batch FILE that can create about 2000 very small logfiles (Just a simple netstat -N command) so I can do some IP address specific logging. Is there anyways to create a counting number, similar to c++ where the variable would just be similar to a++ would mean a would increase by 1 each time? For /l %%A in (1,1,2000) do (or use a for loop as dusty has given. Perfect - Thanks for the help fellas. Also thanks for the welcoming ^.^ |
|