shell 交互脚本菜单

Posted 肖祥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 交互脚本菜单相关的知识,希望对你有一定的参考价值。

一、概述

shell脚本的交互最常用的方式是使用菜单,通常是echo打印菜单出来。

由于服务别名都写在/etc/hosts中

192.168.155.172 test-1
192.168.155.173 test-2
192.168.155.174 test-3
192.168.155.140 test-4

 

开发人员连接后端服务器,需要从hosts中复制比较麻烦。

因此需要一个交互式脚本,简化操作。

 

二、完整代码

start.sh

#!/bin/bash
#simple script menu

#连接主机
function connect_host() {
    ssh -p 22 $1
}


function menu {
    clear
    echo
    echo -e "test menu"
    echo -e "1. test-1"
    echo -e "2. test-2"
    echo -e "3. test-3"
    echo -e "4. test-4"
    echo -e "0. Exit menu\\n\\n"
    #-en 选项会去掉末尾的换行符,这让菜单看起来更专业一些
    echo -en "Enter option:"
    #read 命令读取用户输入
    read -n 1 option
}

menu
case $option in
0)
    exit ;;
1)
    connect_host test-1  ;;
2)
    connect_host test-2 ;;
3)
    connect_host test-3 ;;
4)
    connect_host test-4;;
*)
    clear
    echo "sorry,wrong selection" ;;
esac

echo -en "thit any to contunue"

 

三、用户登录自动执行脚本

由于开发人员,统一使用用户:develop来进行登录。

因此,将star.sh脚本,放到路径/home/develop目录下。

修改环境脚本

vi /home/develop/.bash_profile

最后一行,增加内容:

bash ~/start.sh

 

使用develop登录,效果如下:

 

 

 

 

本文参考链接:

https://www.jianshu.com/p/091738dbab8e

以上是关于shell 交互脚本菜单的主要内容,如果未能解决你的问题,请参考以下文章

代码片段:Shell脚本实现重复执行和多进程

如何创建交互式Shell脚本对话框?

创建交互式shell脚本对话框

在脚本中添加颜色

linux中设计一个shell脚本程序可以接受命令行输入的参数执行相应的菜单命令

shell 脚本 片段