Linux shell编程学习笔记30:打造彩色的选项菜单

简介: Linux shell编程学习笔记30:打造彩色的选项菜单

1 需求分析

Linux shell编程学习笔记21:用select in循环语句打造菜单

中,我们利用select in循环语句打造的菜单中,菜单项都是用系统设置的颜色配置来显示的。

为了让菜单更美观,我们想让每个菜单项分别以不同的颜色来显示,要如何实现呢?

2 打造彩色的选项菜单的方法

首先,我们把要显示的菜单项保存到一个数组中

然后,我们用循环语句 for in 来显示数组中的菜单项,在显示菜单时我们可以为每个菜单项加上一个数字序号作为选择该菜单的数字,并利用\e[xm (其中x的值为31-37)来实现彩色显示

接着,我们用read命令读取用户输入的数值。

最后,对用户输入的数值进行判断,并做相应的处理。

3 演示代码

我们显示一个水果菜单,并增加一个exit菜单选项

当用户输入数字n后,我们进行判断:

如果n 为水果菜单选项对应的数字,显示相应的水果

如果n为exit菜单选项的数字,显示用户选择了退出选项

否则,显示用户输入了错误的数字。

代码如下:

f=(apple banana orrange peach);# 定义水果数组
c=31;   # 颜色
o=1;    #序号
for i in $f;do
     echo -e "\e[${c}m $o)$i \e[0m"; #用不同颜色显示水果选项
     let c+=1;
     if [[ $c > 37 ]]; then
         $c=31;
     fi;
     let o+=1;
done;
     
echo " $o)exit"; # 显示 退出 选项

echo -n "enter the number before the fruit your liked(1 - ${#f}):"; #提示用户输入选项前的数字
read s; #读取用户输入的字符并存入s

if [[  $s -gt 0 && $s -le ${#f} ]]; then #用户输入的是水果选项
   let c=30+s;       #计算水果选项对应的颜色
   echo -e "You selected \e[${c}m$f[$s]\e[0m";#显示用户选择的水果选项
elif [[ $s -eq ((${#f}+1)) ]]; then # 用户选择的是退出选项
   echo You selected exit;#显示用户选择了退出选项
else
   echo Your enter a error number;#显示用户输入的错误的数字
fi

3.1 创建 脚本文件a.sh

用cp 命令来创建脚本文件,文件内容输入完后按Ctrl+D结束文件输入。

purpleEndurer @zsh $ cp /dev/stdin a.sh         
 f=(apple banana orrange peach);# 定义水果数组
 c=31;   # 颜色
 o=1;    #序号
 for i in $f;do
      echo -e "\e[${c}m $o)$i \e[0m"; #用不同颜色显示水果选项
      let c+=1;
      if [[ $c > 37 ]]; then
          $c=31;
      fi;
      let o+=1;
 done;
      
 echo " $o)exit"; # 显示 退出 选项echo -n "enter the number before the fruit your liked(1 - ${#f}):"; #提示用户输入选项前的数字
 read s; #读取用户输入的字符并存入sif [[  $s -gt 0 && $s -le ${#f} ]]; then #用户输入的是水果选项
    let c=30+s;       #计算水果选项对应的颜色
    echo -e "You selected \e[${c}m$f[$s]\e[0m";#显示用户选择的水果选项
 elif [[ $s -eq ((${#f}+1)) ]]; then # 用户选择的是退出选项
    echo You selected exit;#显示用户选择了退出选项
 else
    echo Your enter a error number;#显示用户输入的错误的数字
 fi 
 purpleEndurer @zsh $

image.png

3.2  执行和测试脚本

purpleEndurer @zsh $. ./a.sh
  1)apple 
  2)banana 
  3)orrange 
  4)peach 
  5)exit
 enter the number before the fruit your liked(1 - 4):3
 You selected orrange
 purpleEndurer @zsh $. ./a.sh
  1)apple 
  2)banana 
  3)orrange 
  4)peach 
  5)exit
 enter the number before the fruit your liked(1 - 4):5
 You selected exit
 purpleEndurer @zsh $. ./a.sh
  1)apple 
  2)banana 
  3)orrange 
  4)peach 
  5)exit
 enter the number before the fruit your liked(1 - 4):0
 Your enter a error number
 purpleEndurer @zsh $. ./a.sh
  1)apple 
  2)banana 
  3)orrange 
  4)peach 
  5)exit
 enter the number before the fruit your liked(1 - 4):9
 Your enter a error number
 purpleEndurer @zsh $

image.png

相关文章
|
16天前
|
运维 监控 Shell
深入理解Linux系统下的Shell脚本编程
【10月更文挑战第24天】本文将深入浅出地介绍Linux系统中Shell脚本的基础知识和实用技巧,帮助读者从零开始学习编写Shell脚本。通过本文的学习,你将能够掌握Shell脚本的基本语法、变量使用、流程控制以及函数定义等核心概念,并学会如何将这些知识应用于实际问题解决中。文章还将展示几个实用的Shell脚本例子,以加深对知识点的理解和应用。无论你是运维人员还是软件开发者,这篇文章都将为你提供强大的Linux自动化工具。
|
1月前
|
并行计算 Ubuntu Linux
Ubuntu学习笔记(三):Linux下操作指令大全
Ubuntu学习笔记,介绍了Linux操作系统中常用的命令和操作,如文件管理、系统信息查看、软件安装等。
45 3
|
2月前
|
Shell Linux
Linux shell编程学习笔记82:w命令——一览无余
Linux shell编程学习笔记82:w命令——一览无余
|
9天前
|
缓存 监控 Linux
|
12天前
|
Linux Shell 数据安全/隐私保护
|
13天前
|
域名解析 网络协议 安全
|
19天前
|
运维 监控 网络协议
|
20天前
|
监控 Linux Shell
|
1天前
|
Linux
在 Linux 系统中,“cd”命令用于切换当前工作目录
在 Linux 系统中,“cd”命令用于切换当前工作目录。本文详细介绍了“cd”命令的基本用法和常见技巧,包括使用“.”、“..”、“~”、绝对路径和相对路径,以及快速切换到上一次工作目录等。此外,还探讨了高级技巧,如使用通配符、结合其他命令、在脚本中使用,以及实际应用案例,帮助读者提高工作效率。
9 3
|
1天前
|
安全 网络协议 Linux
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。通过掌握 ping 命令,读者可以轻松测试网络连通性、诊断网络问题并提升网络管理能力。
8 3