我有以下 .bat 文件
a.bat:
start /b b.bat
echo b.bat exited
b.bat:
rem how can we quit below cmd explicit?
%ADB% shell cat /path/to/cat > log
除非 CTRL + C 用于显式退出,否则 shell cat /path/to/cat
不会显式退出。
问
b.bat exited
,我们该怎么办?shell cat /path/to/cat >log
?