Adding EPL to sample code dnsguard/proactive
[toolkit.git] / samples / dnsguard / open_url.bat
1 @echo off
2
3 for /l %%x in (1, 1, 10000) do (
4         
5         start firefox
6         timeout 5
7         
8         for /l %%x in (1, 1, 10) do (
9                 start http://www.randomwebsite.com/cgi-bin/random.pl
10                 timeout 2
11         )
12         
13         timeout 5
14         taskkill /im firefox.exe
15         timeout 5
16 )
17