Linux Command Line and....ch18(select函数?)

第三部分高级shell脚本编程スタート

本章内容:

  • 创建文本菜单
  • 创建文本窗口部件
  • 添加X Window图形

18.1 创建文本菜单

function diskspace {
   clear
   df -k 
}

function whoseon {
   clear
   who 
}

function memusage {
   clear
   cat /proc/meminfo
}

PS3="Enter option: "
select option in "Display disk space" "Display logged on users" "Display memory usage" "Exit program"
do
   case $option in
   "Exit program")
         break ;;
   "Display disk space")
         diskspace ;;
   "Display logged on users")
         echo "Monday";;
   "Display memory usage")
    memusage ;;
    *)
    clear
    echo "Sorry, wrong selection";; 
   esac
done 
clear

(select运行有问题,无法匹配)

#!/bin/bash
# using a variable to hold the list
function diskspace {
   clear
   df -k 
}

function whoseon {
   clear
   who 
}

function memusage {
   clear
   cat /proc/meminfo
}

function menu { 
clear
echo
echo -e "\t\t\tSys Admin Menu\n"
echo -e "\t1. Display disk space"
echo -e "\t2. Display logged on users"
echo -e "\t3. Display memory usage"3
echo -e "\t0. Exit program\n\n"
echo -en "\t\tEnter option: "
read -n 1 option

}
while [ 1 ] 
do
       menu
       case $option in
       0)
         break ;; 
       1)
         diskspace ;;
       2)
         whoseon ;; 
       3)
          memusage ;;
       *)
          clear
          echo "Sorry, wrong selection";;
       esac
     echo -en "\n\n\t\t\tHit any key to continue"
     read -n 1 line
done
clear

18.2 制作窗口

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值