shell二级菜单

今天天气阴,有点儿无聊,就做了这么无趣的玩样儿。。。。。。

#!/bin/bash
#Date:2017-6-20
#Version:1.0
#Author:xcn([email protected])
menu (){
cat <<END
  1.[install lamp]
  2.[install lnmp]
  3.[exit]
  pls input the num you want:
END
  read -t 15 a
}
menu1 (){
cat <<END
  1.[APCHE]
  2.[MYSQL]
  3.[PHP]
  4.[BACK]
  Pls input the lamp menu num you want:
  *************************************
END
  read num1
}
menu2 (){
cat <<END
  1.[NGINX]
  2.[MYSQL]
  3.[PHP]
  4.[BACK]
  Pls input the lnmp menu num you want:
  **************************************
END
  read num2
}
#######################[  menu1  ]############################
menu
[ $a -eq 1 ] && {
  clear
  menu1
  [ $num1 -eq 1 ] && {
  echo "installing apache"
  sleep 3
  echo "install is apacheed"
  menu1
}  
  [ $num1 -eq 2 ] && {
  echo "installing mysql"
  sleep 3
  echo "install is mysqled"
  menu1

}
[ $num1 -eq 3 ] && {
  echo "installing php"
  sleep 3
  echo "install is php"
  menu1

}
[ $num1 -eq 4 ] && {
  echo "return to previous menu"
  menu

}

}
####################[  menu2  ]########################################
[ $a -eq 2 ] && {
  clear
  menu2
  [ $num2 -eq 1 ] && {
  echo "installing nginx"
  sleep 3
  echo "install is nginx"
  menu2
}
  [ $num2 -eq 2 ] && {
  echo "installing mysql"
  sleep 3
  echo "install is mysqled"
  menu2

}
[ $num2 -eq 3 ] && {
  echo "installing php"
  sleep 3
  echo "install is php"
  menu2

}
[ $num2 -eq 4 ] && {
  echo "return to previous menu"
  menu

}

}
[ $a -eq 3 ] && {
  echo "baybay"
  exit
}

奇迹出现:
[[email protected] ~]# sh menu.sh 
  1.[install lamp]
  2.[install lnmp]
  3.[exit]
  pls input the num you want:
1

  1.[APCHE]
  2.[MYSQL]
  3.[PHP]
  4.[BACK]
  Pls input the lamp menu num you want:
  *************************************
2
installing mysql
install is mysqled
  1.[APCHE]
  2.[MYSQL]
  3.[PHP]
  4.[BACK]
  Pls input the lamp menu num you want:
  *************************************
时间: 2024-12-19 03:15:55

shell二级菜单的相关文章

动态生成二级菜单

现在越来越多的用到二级甚至多级菜单,前台菜单的显示,手动指定也越来越不能满足要求,所以,动态生成菜单是必须的 思路 + 示例代码(以二级菜单为例) 先取出一级菜单内容值,接下来遍历一级菜单,将其id当做本次检索的parentid,将与之对应的二级菜单值获取到, 并加入到当前数组中(后台) 二层循环,当获取一个值时,检查其对于的二级菜单项是否有数据,有的话,则输出来,没有则跳过(前台) 以PHP后台为例 $res = mysql_query('*** where parentid = 0');  

jquery实现后台系统左侧菜单的点击展开/收缩二级菜单效果

html: <div class="col-sm-3 col-md-2 sidebar"> <div class="totalt"><a>系统管理系统</a></div> <ul class="menu"> <li class="title"> <a class="item item1"><span cla

html+css二级菜单制作!

二级菜单!!<!DOCTYPE html<html lang="e<head> <meta charset="UTF-8"> <title>Title</title> <style> *{ padding: 0; margin: 0; } .er{ width: auto; background-color: antiquewhite; } a{ text-decoration: none; } .er

一级菜单 二级菜单的联动

1.页面代码:单个集合循环生成一级和二级菜单 /* <c:forEach var="m" items="${list}" >                              <c:if test="${m.mb.father eq '-1' }">                                   <input type="checkbox" name="me

菜单(二级菜单)

一级菜单,div id是mian(i) 注意:i是数字: 二级菜单,div id是child(i)注意:i是数字 target属性是对应<iframe>标签的属性name,这表示在./zy-dzsw.html页面在<iframe>容器显示. <a href="#"><div id="main1" style="color:blue" onclick="document.all.child1.st

Javascript实现简单的下拉二级菜单

在线演示;http://jsfiddle.net/Web_Code/ThhbG/embedded/result/ <span style="font-size:14px;"><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <

二级菜单通过一个ID查找父级ID

select `id`,`name`,`pid` AS `q_pid`,(select id From qiyu_gift_category where id = q_pid ) as root_id from qiyu_gift_category WHERE id = 1SELECT `id` FROM `qiyu_gift_category` WHERE id = (SELECT pid FROM qiyu_gift_category WHERE id = 1) LIMIT 1 二级菜单通过

菜单(三)二级菜单和标题栏菜单

package com.example.menu2; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.widget.Toast; public class MainActivity extends Activity { @Overri

纯css+div写二级菜单

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>二级菜单</title> <style> * { margin:0; padding:0;}ul, li { list-style:none;}a { text-decoration:none;}.nav { border:2px solid #cc