如何在 Bash Shell 指令碼中顯示對話方塊

linux.cn發表於2015-06-02

這個教程給出幾個如何使用類似zenity和whiptail的工具在Bash Shell 指令碼中提供訊息/對話方塊的例子。使用這些工具,你的指令碼能夠告知使用者當前程式執行的狀態並能與使用者進行互動。這兩個工具的不同之處在於顯示訊息框或者對話方塊的方式。Zenity用GTK工具包建立圖形使用者介面,而whiptail則在終端視窗內建立訊息框。

Zenity 工具

在Ubuntu中安裝zenity,執行:

sudo apt-get install zenity

用zenity建立訊息框或者對話方塊的命令是不言自明的,我們會給你提供一些例子來參考。

建立訊息框

zenity --info --title "Information Box" --text "This should be information" --width=300 --height=200

如何在Bash Shell指令碼中顯示對話方塊

建立 Yes/No 詢問對話方塊

zenity --question --text "Do you want this?" --ok-label "Yeah" --cancel-label="Nope"

如何在Bash Shell指令碼中顯示對話方塊

建立輸入框並將輸入值儲存到變數中

a=$(zenity --entry --title "Entry box" --text "Please enter the value" --width=300 --height=200)
echo $a

如何在Bash Shell指令碼中顯示對話方塊

輸入後,值會儲存在變數 $a 中。

這是一個獲取使用者姓名並顯示的實際事例。

#!/bin/bash
#
# This script will ask for couple of parameters
# and then continue to work depending on entered values
#

# Giving the option to user
zenity --question --text "Do you want to continue?"

# Checking if user wants to proceed
[ $? -eq 0 ] || exit 1

# Letting user input some values
FIRSTNAME=$(zenity --entry --title "Entry box" --text "Please, enter your first name." --width=300 --height=150)
LASTNAME=$(zenity --entry --title "Entry box" --text "Please, enter your last name." --width=300 --height=150)
AGE=$(zenity --entry --title "Entry box" --text "Please, enter your age." --width=300 --height=150)

# Displaying entered values in information box
zenity --info --title "Information" --text "You are ${FIRSTNAME} ${LASTNAME} and you are ${AGE}(s) old." --width=300 --height=100

這些是執行前面指令碼的截圖。

如何在Bash Shell指令碼中顯示對話方塊

框1

如何在Bash Shell指令碼中顯示對話方塊

輸入框

如何在Bash Shell指令碼中顯示對話方塊

輸入框

如何在Bash Shell指令碼中顯示對話方塊

輸入框

如何在Bash Shell指令碼中顯示對話方塊

資訊框

別忘了檢視也許能幫助到你的有用的zenity 選項。

Whiptail 工具

在Ubuntu上安裝whiptail,執行

sudo apt-get install whiptail

用whiptail建立訊息框或者對話方塊的命令也是無需解釋的,我們會給你提供一些基本例子作為參考。

建立訊息框

whiptail --msgbox "This is a message" 10 40

如何在Bash Shell指令碼中顯示對話方塊

建立 Yes/No 對話方塊

whiptail --yes-button "Yeah" --no-button "Nope" --title "Choose the answer" --yesno "Will you choose yes?" 10 30

如何在Bash Shell指令碼中顯示對話方塊

建立有預設值的輸入框

whiptail --inputbox "Enter your number please." 10 30 "10"

如何在Bash Shell指令碼中顯示對話方塊

嘗試使用輸入值要注意的一點是whiptail用stdout顯示對話方塊,用stderr輸出值。這樣的話,如果你用 var=$(…),你就根本不會看到對話方塊,也不能獲得輸入的值。解決方法是交換stdout和stderr。在whiptail命令後面新增 3>&1 1>&2 2>&3 就可以做到。你想獲取輸入值的任何whiptail命令也是如此。

建立選單對話方塊

whiptail --menu "This is a menu. Choose an option:" 20 50 10 1 "first" 2 "second" 3 "third"

如何在Bash Shell指令碼中顯示對話方塊

這是一個請求使用者輸入一個資料夾的路徑並輸出它的大小的 shell 指令碼

#!/bin/bash
#
#

# Since whiptail has to use stdout to display dialog, entered value will
# be stored in stderr. To switch them and get the value to stdout you must
# use 3>&1 1>&2 2>&3
FOLDER_PATH=$(whiptail --title "Get the size of folder" /
--inputbox "Enter folder path:" /
10 30 /
"/home" /
3>&1 1>&2 2>&3)

if [ -d $FOLDER_PATH ]
then
size=$(du -hs "$FOLDER_PATH" | awk '{print $1}')
whiptail --title "Information" /
--msgbox "Size of ${FOLDER_PATH} is ${size}" /
10 40
elif [ -f $FOLDER_PATH ]
then
whiptail --title "Warning!!!" /
--msgbox "The path you entered is a path to a file not a folder!" /
10 40
else
whiptail --title "Error!!!"
--msgbox "Path you entered is not recognized. Please try again" /
10 40
fi

這是之前例子的一些截圖:

如何在Bash Shell指令碼中顯示對話方塊

輸入框

如何在Bash Shell指令碼中顯示對話方塊

訊息框

如果你在終端下工作,幫助手冊總是有用的。

結論

選擇合適的工具顯示對話方塊取決於你期望在桌面機器還是伺服器上執行你的指令碼。桌面機器使用者通常使用GUI視窗環境,也可能執行指令碼並與顯示的視窗進行互動。然而,如果你期望使用者是在伺服器上工作的,(在沒有圖形介面時,)你也許希望能確保總能顯示,那就使用whiptail或者任何其它在純終端視窗顯示對話方塊的工具。

相關文章