我想用这段代码制作批处理文件
@echo off
echo ping -n5 localhost>nul >>hiddenping.bat
exit
hiddenping.bat中的输出是
ping -n5 localhost
nul未保存在文件
中
如何制作包含代码的hiddenping.bat文件 的
ping -n5 localhost>nul
答案 0 :(得分:3)
插入符号^
允许您转义某些字符。
@echo off
echo ping -n5 localhost^>nul >>hiddenping.bat
exit
答案 1 :(得分:0)
你需要引用你现在不想执行的部分。
echo "ping -n5 localhost>nul" >>hiddenping.bat