如何做写一个批处理文件,能每隔一定的时间自动运行同样的命令?

2024-11-22 21:14:58
推荐回答(2个)
回答(1):

@echo off
title 间隔30秒运行一次
:go
time/t
timeout 30
goto go

回答(2):

:hello
start "" "c:\client.exe"
connect
ping 127.0 /n 60>nul
goto hello

rem /n后面可以设置时间,以上保存为bat