時間:2015/6/28來源:IT貓撲網(wǎng)作者:網(wǎng)管聯(lián)盟我要評論(0)
今天有一個朋友請教我一道Shell 題如下:
上機實驗題:
1. 用shell編寫一個腳本,實現(xiàn)以下功能。
a) 程序需要實現(xiàn)以下可供用戶選擇的操作界面:
注:USER后顯示當前登陸用戶名;
HOST后顯示主機名
DATA后顯示當前系統(tǒng)時間,時間格式請轉(zhuǎn)換為:DDMMYYYY;
b) 系統(tǒng)使用者選擇1號業(yè)務,用戶輸入提取次數(shù)和提取間隔,請將提取結果打印在系統(tǒng)終端上。
c) 系統(tǒng)使用者選擇2號業(yè)務,用戶輸入提取次數(shù)和提取間隔,請將提取結果輸出到以當前的系統(tǒng)時間為標準的日志文件中,格式為10:24:53.log。
d) 系統(tǒng)使用者,選擇3號業(yè)務,則退出當前操作界面。
看了下。我還真沒有寫過。以前有的while寫的簡單的菜單。剛才花時間做了這道題:
貼出腳本:
1.#! /bin/bash
2.#LiuYu liuyu.blog.51cto.com
3.while true
4.do
5.clear
6.echo
7.echo "-------------------------------------------------------------------------"
8.tput cup 2 10
9.time=`date +"%d%m%Y"`
10.echo -ne "USER:$USER\tHOST:$HOSTNAME\tdate:$time"
11.echo
12.tput cup 3
13.echo "-------------------------------------------------------------------------"
14.tput cup 4 10
15.echo -e "1:提取系統(tǒng)內(nèi)存,并且在系統(tǒng)終端顯示內(nèi)容;"
16.tput cup 5 10
17.echo -e "2:提取系統(tǒng)內(nèi)存,寫入文件;"
18.tput cup 6 10
19.echo -e "3:退出;"
20.tput cup 7
21.echo "--------------------------------------------------------------------------"
22.echo
23.tput cup 8
24.echo "LiuYu "
25.tput cup 9 8
26.echo -n "You choice [1,2,3]:"
27.read AA
28.case $AA in
29.1)tput cup 10
30.echo -n "請輸入提取次數(shù):"
31.read BB1
32.echo -n "請輸入提取間隔:"
33.read BB2
34.echo -n "開始提取:"
35.echo -e $time
36.free -s $BB1 -c $BB2
37.echo -n "提取結束"
38.;;
39.2)tput cup 11
40.time2=`date +"%X"`
41.echo -n "請輸入提取次數(shù):"
42.read cc1
43.echo -n "請輸入提取間隔:"
44.read cc2
45.echo -n "開始提取:"
46.echo -n $time
47.free -s $cc1 -c $cc2 >> $time2.log
48.echo -n "提取結束"
49.;;
50.3)exit
51.;;
52.*)echo "liuyu.blog.51cto.com!"
53.;;
54.esac
55.read opendoc
56.done
代碼效果:
輸入2:
關鍵詞標簽:Linux Shell菜單
相關閱讀
熱門文章 安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程使用screen管理你的遠程會話GNU/Linux安裝vmware如何登錄linux vps圖形界面 Linux遠程桌面連
人氣排行 Linux下獲取CPUID、硬盤序列號與MAC地址linux tc實現(xiàn)ip流量限制dmidecode命令查看內(nèi)存型號linux下解壓rar文件安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程Ubuntu linux 關機、重啟、注銷 命令lcx.exe、nc.exe、sc.exe入侵中的使用方法查看linux服務器硬盤IO讀寫負載