我想在后台运行Tshark.exe。请告诉我这个命令有什么问题。
start /b "c:\Program Files\Wireshark\tshark.exe" -i 1 -w file1.pcap
这个cmd给了我这个错误“Windows无法找到'-i'......)
答案 0 :(得分:7)
start /b "Window Title" "c:\Program Files\Wireshark\tshark.exe" -i 1 -w file1.pcap
start
将用双引号括起来的第一个字符串解释为它应该创建的窗口的标题。
<强>更新强>:
在@Ray Toal的评论之后,我尝试了一些组合:
L:\>start /b "L:\tools\scjview.exe" -i
The system cannot find the file -i.
L:\>start /b "test" "L:\tools\scjview.exe" -i
L:\>
答案 1 :(得分:3)
start /b "" "c:\Program Files\Wireshark\tshark.exe" -i 1 -w file1.pcap
答案 2 :(得分:0)
ghc-pkg check