我正在编写DOS批处理脚本文件。我的脚本将执行以下操作:
test.bat的
mkdir c:\test_log_file
powershell adb logcat >> "C:\Testdata.txt"
shell monkey -p com.android.browser
我有一个问题将PowerShell产生到一个新窗口。如何在新的命令窗口中打开电源shell。
问候,
答案 0 :(得分:3)
mkdir c:\test_log_file
START "Powershell window" powershell adb logcat ^>^> "C:\Testdata.txt"
shell monkey -p com.android.browser
需要插入符号(^
)以逃避它们对命令处理器的特殊含义。引用的第一个参数是新窗口的Window标题。如果您愿意,可以""
。