詳解Linux互動式shell指令碼中建立對話方塊執行個體教程

來源:互聯網
上載者:User

當你在終端環境下安裝新的軟體時,你可以經常看到資訊對話方塊彈出,需要你的輸入。對話方塊的類型有密碼箱,檢查表,菜單,等等。他們可以引導你以一種直觀的方式輸入必要的資訊,使用這樣的方便使用的對話方塊的好處是顯而易見的。如下圖所示:

 

 

當你寫一個互動式shell指令碼,你可以使用這樣的對話方塊來接受使用者的輸入。whiptail可以在shell指令碼中建立基於終端的對話方塊,訊息框的過程,類似於Zenity或xdialog GUI指令碼代碼。預先安裝在所有的Linux發布版本中。

下面來看看whiptail的用法:

建立一個訊息框

一個訊息框中顯示一個確認按鈕繼續任意的簡訊。

文法:

whiptail –title “” –msgbox “”

執行個體:

#!/bin/bash
whiptail --title "Test Message Box" --msgbox "Create a message box with whiptail. Choose Ok to continue." 10 60

 

 

建立一個yes/no對話方塊

使用者輸入yes或no的對話方塊。

文法:

whiptail –title “” –yesno “”

執行個體:

#!/bin/bash
if (whiptail --title "Test Yes/No Box" --yesno "Choose between Yes and No." 10 60) then
    echo "You chose Yes. Exit status was $?."
else
    echo "You chose No. Exit status was $?."
fi

 

 

 

或者,你可以是“–yes-button” ,”–no-button”選項。

#!/bin/bash
if (whiptail --title "Test Yes/No Box" --yes-button "Skittles" --no-button "M&M's"  --yesno "Which do you like better?" 10 60) then
    echo "You chose Skittles Exit status was $?."
else
    echo "You chose M&M's. Exit status was $?."
fi

 

 

建立一個表單輸入框

如果你想使用者輸入任意的文本,您可以使用一個輸入框。

文法:

whiptail –title “” –inputbox “”

執行個體:

#!/bin/bash
PET=$(whiptail --title "Test Free-form Input Box" --inputbox "What is your pet's name?" 10 60 Wigglebutt 3>&1 1>&2 2>&3)
 
exitstatus=$?
if [ $exitstatus = 0 ]; then
    echo "Your pet name is:" $PET
else
    echo "You chose Cancel."
fi

 

 

建立一個密碼框

當使用者需要輸入敏感資訊時密碼框是有用的。

文法:

whiptail –title “” –passwordbox “”

執行個體:

#!/bin/bash
PASSWORD=$(whiptail --title "Test Password Box" --passwordbox "Enter your password and choose Ok to continue." 10 60 3>&1 1>&2 2>&3)
 
exitstatus=$?
if [ $exitstatus = 0 ]; then
    echo "Your password is:" $PASSWORD
else
    echo "You chose Cancel."
fi

 

 

建立一個功能表列

當你想讓使用者選擇一個任意數量的選擇中,你可以使用菜單框。

文法:

whiptail –title “

” –menu “”

[ ] . . .

執行個體:

#!/bin/bash
OPTION=$(whiptail --title "Test Menu Dialog" --menu "Choose your option" 15 60 4
"1" "Grilled Spicy Sausage"
"2" "Grilled Halloumi Cheese"
"3" "Charcoaled Chicken Wings"
"4" "Fried Aubergine"  3>&1 1>&2 2>&3)
 
exitstatus=$?
if [ $exitstatus = 0 ]; then
    echo "Your chosen option:" $OPTION
else
    echo "You chose Cancel."
fi

 

 

建立radiolist對話方塊

文法:

whiptail –title “” –radiolist “” [ ] . . .

執行個體:

#!/bin/bash
DISTROS=$(whiptail --title "Test Checklist Dialog" --radiolist
"What is the Linux distro of your choice?" 15 60 4
"debian" "Venerable Debian" ON
"ubuntu" "Popular Ubuntu" OFF
"centos" "Stable CentOS" OFF
"mint" "Rising Star Mint" OFF 3>&1 1>&2 2>&3)
 
exitstatus=$?
if [ $exitstatus = 0 ]; then
    echo "The chosen distro is:" $DISTROS
else
    echo "You chose Cancel."
fi

 

 

 

建立一個表對話方塊

當你想讓使用者選擇一個列表中選擇多個選項的清單對話方塊是有用的,radiolist對話方塊,只允許選擇一個。

文法:

whiptail –title “” –checklist “” [ ] . . .

執行個體:

#!/bin/bash
DISTROS=$(whiptail --title "Test Checklist Dialog" --checklist
"Choose preferred Linux distros" 15 60 4
"debian" "Venerable Debian" ON
"ubuntu" "Popular Ubuntu" OFF
"centos" "Stable CentOS" ON
"mint" "Rising Star Mint" OFF 3>&1 1>&2 2>&3)
 
exitstatus=$?
if [ $exitstatus = 0 ]; then
    echo "Your favorite distros are:" $DISTROS
else
    echo "You chose Cancel."
fi

 

 

建立一個進度條

進度條是一個方便使用的對話方塊。whiptail從標準輸入讀取一個百分數(0~100),顯示一個表內相應的計數。

文法:

whiptail –gauge “”

執行個體:

#!/bin/bash
{
    for ((i = 0 ; i <= 100 ; i+=20)); do
        sleep 1
        echo $i
    done
} | whiptail --gauge "Please wait while installing" 6 60 0

 

 

哈哈,是多麼容易在互動式shell指令碼建立有用的對話方塊了吧。下次需要寫一個互動shell指令碼,試著用whiptail哈。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.