Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这样的问题。假设我想将此代码写入文本文件。
echo taskkill /IM wscript.exe /F > null
我该怎么做?
感谢 vendettamit、Matteo Italia 和 Roger Lipscombe :)
在批处理中,插入符号 ( ^) 是转义字符;因此:
^
echo taskkill /IM wscript.exe /F ^>null >file.txt
顺便说一句,我想你的意思是>NUL(>null只会将数据写入名为 的文件中null)。
>NUL
>null
null
尝试这个:
ECHO taskkill .IM wscript.exe /F ^> null > yourFile.txt