标签:for 脚本 文件 ping 延时 txt 效果 读取文件 echo
### 读取文件
ping 127.0.0.1 -n 1 > tmp.txt
for /f i in (tmp.txt) do ( echo %i% )
### 延时
借用ping的延时, 当前这个延时不精准,只能是大概有延时1秒的效果 。
ping 0 -n 2 > nul
标签:for 脚本 文件 ping 延时 txt 效果 读取文件 echo
原文地址:https://www.cnblogs.com/ljymoonlight/p/14359476.html