【bat批处理脚本命令】bat脚本实现一键启动和停止mysql服务,接收用户输入进行if判断(保姆级图文+实现代码)

目录


欢迎关注 『bat批处理脚本命令』 系列,持续更新中
欢迎关注 『bat批处理脚本命令』 系列,持续更新中

『【bat批处理脚本命令】运行命令失败,中文乱码,请检查一下你的编码(保姆级图文+实现代码)』

if-else if-else综合应用

【bat批处理脚本命令】bat脚本实现一键启动和停止mysql服务,接收用户输入进行if判断(保姆级图文+实现代码)

【bat批处理脚本命令】bat脚本实现一键启动和停止mysql服务,接收用户输入进行if判断(保姆级图文+实现代码)

@echo off
echo  选择执行的功能
echo  数字1表示开启mysql服务
echo  数字2表示关闭mysql服务
set /p input=请输入数字----:
echo 您输入的数字为%input%
if "%input%"=="1" (
    echo 为您开启mysql服务
    net start mysql
) else if "%input%"=="2" (
    echo 为您关闭mysql服务
    net stop mysql
) else (
    echo 错误数字
)
pause

总结

大家喜欢的话,给个

上一篇:linux命令返回值


下一篇:【bat批处理脚本命令】bat命令接收用户输入的内容(保姆级图文+实现代码)