Skip to content

Commit

Permalink
run.bat for windows (#3542)
Browse files Browse the repository at this point in the history
run.bat with persistent loop
  • Loading branch information
sia84 authored and solderzzc committed Aug 11, 2016
1 parent e9b229e commit 9ccadcd
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions run.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@echo off
set /a x=0
:LOOP
echo Running pokecli.py for count: %x%
REM Change the path for python.exe if it's different for you
C:\Python27\python.exe pokecli.py
REM Waits for 60 seconds
ping 127.0.0.1 -n 60 > nul
set /a x+=1
goto :LOOP

0 comments on commit 9ccadcd

Please sign in to comment.