Windows DOS命令 bat批处理脚本交互操作
Posted 皓月盈江
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Windows DOS命令 bat批处理脚本交互操作相关的知识,希望对你有一定的参考价值。
set的主要作用是赋值
set /p opt=Enter your option:
先显示Enter your option:,再接收用户输入的内容,以回车表示结束,赋值给变量opt
实例测试:
@echo off
echo 1.show ip address
echo 2.show directory
:main
set /p opt=Enter your option:
if %opt% == 1 goto one
if %opt% == 2 goto two
echo Invalid option
goto main
:one
ipconfig /all
pause > nul
exit
:two
dir
pause > nul
exit
以上是关于Windows DOS命令 bat批处理脚本交互操作的主要内容,如果未能解决你的问题,请参考以下文章