in reply to how to call this perl file repeatedly after every minute from batck file
Why do in a batch file what you can do in a(nother) Perl program?
while (1) { system($^X, '0w3.pl') == 0 or warn "Couldn't launch w3.pl: $! / $^E"; sleep 60; }; [download]