我有两个 bat 脚本:A.bat 和 B.bat。A.bat 生成一个txt文件(year.txt),其中包含模拟的最后一年,比如2005年。
我希望 A.bat 每 30 秒检查一次 year.txt。如果 year.txt 显示 2005,那么 A.bat 将调用 B.bat。
请教我如何做到这一点。非常感谢。
要每 30 秒检查一次,只需使用sleep
:
while true; do
if test "$(cat year.txt)" = "2005"; then
B.bat
fi
sleep 30
done