输入与 echo 批处理文件相同的行

输入与 echo 批处理文件相同的行

似乎无法完全正确地做到这一点,尝试设置批处理文件来执行一些网络命令,例如 ping。我有以下代码:

echo Please enter the IP Address to TELNET 
echo IP Address:
set /p IP_Addr=

我似乎无法将 IP 地址的输入放在与 echo 相同的行上。我尝试使用 echo|set,但不知道我是否使用正确。

有任何想法吗?

答案1

set /?

SET /P 变量=[提示字符串]

您想要显示的提示位于set /p等号后面。

所以:

echo Please enter the IP Address to TELNET 
set /p IP_Addr=IP Address: 

相关内容