#dialog介绍

dialog是一个可以输入图形界面的一个工具,但他得要结合shell来一起使用,方能发挥他的功效


#通用选项

[ --title ]在对话框上面显示标题字符串

[ --no-shadow ] 禁止阴影出现在每个对话框的底部

[ --begin <y> <x> ] 指定对话框左上角屏幕上的坐标

[ --timeout <secs> ] 超时,如果用户在指定的时间没有给出相应动作,就退到终端

[ --insecure ] 输入部件的密码时,使用*号来代表每个字符

[ --no-cancel ] 设置在输入框、菜单和复选框中,不显示"cancel"项

[ --backtitle <backtitle> ] 指定的backtitle字符串显示在背景顶端

[ --clear ] 完成清屏操作,在框体显示结束后,清除框体

[--defaultno ] 使用的默认值yes/no,使用no

[ --default-item <str> ] 设置在一份清单,表格或菜单中的默认项目。通常在框中第一项是默认


#对话框选项

[ --msgbox ] 显示一条消息,并要求用户选择一个确定按钮(消息框)

[ --infobox ] 显示消息后,(没有等待响应)对话框立刻返回,但不清除屏幕(信息框)

[ --yesno ] 提供一个带有yes和no按钮的简单信息框 (是/否框)

[ --pause ] 用来显示一个对话框指定的暂停时间的状态 (暂停时间框)

[ --inputbox ] 让用户输入文本(输入框)

[ --fselect ] 提供一个路径,让你选择浏览的文件,(文件选框)

[ --passwordbox ] 显示一个输入框,它隐藏文本

[ --testbox ] 在带有滚动条的文本框中显示文本内容(文本框)

[ --editbox ] 编辑一个文件内容 (编辑框)

[ --menu ] 显示一个列表供用户选择(菜单框)

[ --inputmenu ] 提代一个可供用户编辑的菜单(可编辑的菜单框)

[ --radiolist ] 提供一个菜单项目组,只有一个项目可以选择(单选框)

[ --checklist ] 允许你显示一个选项列表,每个选项都可以被单独的选择(复选框)

[ --calendar ] 提供了一个日历,让你可以选择日期(日期框)

[ --timebox ] 提供一个窗口,选择小时、分钟、秒(时间框)

[ --gauge ] 显示一个表,呈现出完成的百分比,就是显示出进度(进度框)

[ --from ] 允许你建立一个带标签的文本字段,并要求填写(表单框)



dialog安装

[root@localhost ~]# yum -y install dialog

#命令示例

1、消息框格式: dialog --msgbox <text> <height> <width>

[root@localhost ~]# dialog --title "testing" --msgbox "消息框测试"  10 20

Linux下dialog图形化工具详解_Linux



2、信息框格式: --infobox  <text> <height> <width>

[root@localhost opt]# dialog --title "testing" --infobox  "消息框测试"  10 20

Linux下dialog图形化工具详解_dialog_02



3、暂停时间框格式:--pause <text> <height> <width> <seconds>

[root@localhost opt]# dialog --title "暂停时间测试" --pause "这是一个暂停期测试" 10 30 5

Linux下dialog图形化工具详解_Linux_03



4、是/否框格式: dialog --yesno <text> <height> <width>

[root@localhost ~]# dialog --title "yes/no" --no-shadow --yesno "你是要删除这个文件吗?" 10 30

Linux下dialog图形化工具详解_dialog_04



5、输入框格式:dialog --inputbox <text> <height> <width>

[root@localhost ~]# dialog --title "输入名字" --inputbox "请输入你的名字" 10 30 2> /tmp/name.txt

#这里的 2> 是将信息输出重定向到了/tmp/name.txt文件中)

Linux下dialog图形化工具详解_shell_05



6、文件选框格式:--fselect  <filepath> <height> <width>

[root@localhost ~]# dialog --title "路径选择" --fselect "/ " 10 50

Linux下dialog图形化工具详解_dialog_06



7、密码框格式:--passwordbox  <text> <height> <width> [<init>]

[root@localhost ~]# dialog --title "password" --insecure --passwordbox "请输入密码" 10 30

  Linux下dialog图形化工具详解_Linux_07



8、文本框格式:--textbox  <file> <height> <width>

[root@localhost opt]# dialog --title "tail test" --textbox "/etc/passwd" 30 80

Linux下dialog图形化工具详解_dialog_08


Linux下dialog图形化工具详解_dialog_09



9、编辑框格式:--editbox  <file> <height> <width>

[root@localhost opt]# dialog --title "编辑一个文件" --editbox "/etc/passwd" 30 88

Linux下dialog图形化工具详解_dialog_10



10、菜单框格式: --menu <text> <height> <width> <menu height> <tag1> <item1>...

[root@localhost ~]# dialog --title "Pick a choice" --menu "Choose one" 12 35 5 \
> 1 "say hello to everyone" 2 "thanks for your support" 3 "exit"

Linux下dialog图形化工具详解_dialog_11



11、可编辑菜单框格式:--inputmenu <text> <height> <width> <menu height> <tag1> <item1>...

[root@localhost opt]# dialog --title "Pick a choice" --inputmenu "Choose one" 12 35 5 1 "say hello to everyone" 2 "thanks for your support" 3 "exit"

Linux下dialog图形化工具详解_Linux_12



12、单选框格式:--radiolist <text> <height> <width> <list height> <tag1> <item1> <status1>...

[root@localhost opt]# dialog --backtitle "radiolist" --radiolist "Test" 20 50 10  Memory Memory_Size 1 Dsik Disk_Size 2

Linux下dialog图形化工具详解_dialog_13



13、复选框格式:--checklist <text> <height> <width> <list height> <tag1> <item1> <status1>...

dialog --backtitle "Checklist" --checklist "Test" 20 50 10 Memory Memory_Size 1 Dsik Disk_Size 2

Linux下dialog图形化工具详解_Linux_14



14、显示日历格式:--calendar <text> <height> <width> <day> <month> <year>

#显示当前日期

[root@localhost ~]# dialog --title "Calendar" --calendar "Date" 5 50

Linux下dialog图形化工具详解_Linux_15


#显示指定日期

[root@localhost ~]# dialog --title "Calendar" --calendar "Date" 5 50 1 1 2017

Linux下dialog图形化工具详解_shell_16



15、时间框格式:--timebox <text> <height> <width> <hour> <minute> <second>

[root@localhost opt]# dialog --title "时间选择框" --timebox "请选择一个时间" 5 20 1 30 20

Linux下dialog图形化工具详解_shell_17



16、进度框架格式:--gauge <text> <height> <width> [<percent>]

#固定进度显示

[root@localhost ~]# dialog --title "installation pro" --gauge "installation" 10 30 10

Linux下dialog图形化工具详解_Linux_18


#动态进度显示

[root@localhost ~]# for i in {1..10000} ;do echo $i;done | dialog --title "installation pro" --gauge "installation" 10 30

Linux下dialog图形化工具详解_shell_19


#编辑一个gauge.sh脚本,内容如下

#!/bin/bash  
declare -i PERCENT=0
(
        for I in /etc/*;do
                if [ $PERCENT -le 100 ];then
                        cp -r $I /tmp/test 2> /dev/null
                        echo "XXX" 
                        echo "Copy the file $I ..." 
                        echo "XXX" 
                        echo $PERCENT  
                fi
        let PERCENT+=1
        sleep 0.1
        done
) | dialog --title "coping" --gauge "starting to copy files..." 6 50 0

Linux下dialog图形化工具详解_Linux_20



17、from框架表单: 格式:dialog --form text height width formheight [ label y x item y x flen ilen ] ...

其中

flen 表示field length,定义了:选定字段中显示的长度

ilen 表示 input-length, 定义了:在外地输入的数据允许的长度

使用up/down(或ctrl/ N,ctrl/ P)在使用领域之间移动。使用tab键在窗口之间切换。

例子:

[root@localhost opt]# dialog --title "Add a user" --form "Please input the infomation of new user:" 12 40 4  \> "Username:" 1  1 "" 1  15  15  0  \
> "Full name:" 2  1 "" 2  15  15  0  \
> "Home Dir:" 3  1 "" 3  15  15  0  \
> "Shell:"    4   1 "" 4  15  15  0

Linux下dialog图形化工具详解_shell_21



综合应用示例:

[root@localhost opt]# cat dialog.sh   
#!/bin/bash
yesno() {
 dialog --title "First screen" --backtitle "Test Program" --clear --yesno \
 "Start this test program or not ? \nThis decesion have to make by you. " 16 51
 # yes is 0, no is 1 , esc is 255
 result=$?
 if [ $result -eq 1 ] ; then
 exit 1;
 elif [ $result -eq 255 ]; then
 exit 255;
 fi
 username
}
username() {
 cat /dev/null >/tmp/test.username
 dialog --title "Second screen" --backtitle "Test Program" --clear --inputbox \
 "Please input your username (default: hello) " 16 51 "hello" 2>/tmp/test.username
 result=$?
 if [ $result -eq 1 ] ; then
 yesno
 elif [ $result -eq 255 ]; then
 exit 255;
 fi
 password
}
password() {
 cat /dev/null >/tmp/test.password
 dialog --insecure --title "Third screen" --backtitle "Test Program" --clear --passwordbox \
 "Please input your password (default: 123456) " 16 51 "123456" 2>/tmp/test.password
 result=$?
 if [ $result -eq 1 ] ; then
 username
 elif [ $result -eq 255 ]; then
 exit 255;
 fi
 occupation
}
occupation() {
 cat /dev/null >/tmp/test.occupation
 dialog --title "Forth screen" --backtitle "Test Program" --clear --menu \
 "Please choose your occupation: (default: IT)" 16 51 3 \
 IT "The worst occupation" \
 CEO "The best occupation" \
 Teacher "Not the best or worst" 2>/tmp/test.occupation
 result=$?
 if [ $result -eq 1 ] ; then
 password
 elif [ $result -eq 255 ]; then
 exit 255;
 fi
 finish
}
finish() {
 dialog --title "Fifth screen" --backtitle "Test Program" --clear --msgbox \
 "Congratulations! The test program has finished!\n Username: $(cat /tmp/test.username)\n Password: $(cat /tmp/test.password)\n Occupation: $(cat /tmp/test.occupation)" 16 51
 result=$?
 if [ $result -eq 1 ] ; then
 occupation
 elif [ $result -eq 255 ]; then
 exit 255;
 fi
}
yesno

Linux下dialog图形化工具详解_Linux_22


Linux下dialog图形化工具详解_Linux_23


Linux下dialog图形化工具详解_Linux_24


Linux下dialog图形化工具详解_Linux_25


Linux下dialog图形化工具详解_Linux_26