gpt4 book ai didi

batch-file - 如何在 echo 命令上制作包含 >nul 的批处理文件

转载 作者:行者123 更新时间:2023-12-03 16:28:09 30 4
gpt4 key购买 nike

我想用这段代码制作批处理文件


@echo off
echo ping -n5 localhost>nul >>hiddenping.bat
exit

hiddenping.bat 中的输出是

ping -n5 localhost

nul is not saved in the file

如何制作包含代码的hiddenping.bat文件的

ping -n5 localhost>nul

最佳答案

插入符号 ^ 允许您转义某些字符。

@echo off
echo ping -n5 localhost^>nul >>hiddenping.bat
exit

关于batch-file - 如何在 echo 命令上制作包含 >nul 的批处理文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32031908/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com