Shell图形界面dialog应用详解

相信大部分朋友都使用过Centos Redhat的setup工具,会弹出向导式图形菜单供我们配置Linux系统,如果你想为你的脚本程序增色添彩,dialog工具无疑是个非常好的选择。dialog工具以一种简洁的方式来润色你的脚本程序,是你的脚本程序看起来更加的友好,setup工具如下图所示。

Liunx 下的dialog 工具是一个可以和shell脚本配合使用的文本界面下的创建对话框的工具。
每个对话框提供的输出有两种形式:
   1.  将所有输出到stderr 输出,不显示到屏幕。
   2.  使用退出状态码,“OK”为0,“NO”为1,"ESC"为255

下面我们来看看dialog工具使用的参数选项:

通用选项 common options:(这个选项来设置dialog box的背景,颜色和 标题等)

[--title <title>]  指定将在对话框的上方显示的标题字符串
[--colors]    解读嵌入式“\ Z”的对话框中的特殊文本序列,序列由下面的字符 0-7, b  B, u, U等,恢复正常的设置使用“\Zn”。
[--no-shadow]   禁止阴影出现在每个对话框的底部
[--shadow]   应该是出现阴影效果
[--insecure]   输入部件的密码时,明文显示不安全,使用星号来代表每个字符
[--no-cancel]   设置在输入框,菜单,和复选框中,不显示“cancel”项
[--clear]   完成清屏操作。在框体显示结束后,清除框体。这个参数只能单独使用,不能和别的参数联合使用。
[--ok-label <str>]   覆盖使用“OK”按钮的标签,换做其他字符。
[--cancel-label <str>]  功能同上
[--backtitle <backtitle>] 指定的backtitle字符串显示在背景顶端。
[--begin <y> <x>]   指定对话框左上角在屏幕的上的做坐标
[--timeout <secs>]   超时(返回的错误代码),如果用户在指定的时间内没有给出相应动作,就按超时处理
[--defaultno]   使的是默认值 yes/no,使用no
[--sleep <secs>]
[--stderr]  以标准错误方式输出
[--stdout]  以标准方式输出
[--default-item <str>]  设置在一份清单,表格或菜单中的默认项目。通常在框中的第一项是默认

窗体类型:

常见的对话框控件选项有:
[ --calendar ]     提供了一个日历,让你可以选择日期
[ --checklist ]    允许你显示一个选项列表,每个选项都可以被单独的选择  (复选框)
[ --from ]           允许您建立一个带标签的文本字段,并要求填写
[ --fselect ]    提供一个路径,让你选择浏览的文件
[ --gauge ]    显示一个表,呈现出完成的百分比,就是显示出进度。
[ --infobox ]     显示消息后,(没有等待响应)对话框立刻返回,但不清除屏幕  (信息框)
[ --inputbox ]   让用户输入文本  (输入框  )
[ --inputmenu ]    提供一个可供用户编辑的菜单  (可编辑的菜单框)
[ --menu ]       显示一个列表供用户选择   (菜单框)
[ --msgbox ]   显示一条消息,并要求用户选择一个确定按钮  (消息框  )
[ --pause ]      显示一个表格用来显示一个指定的暂停期的状态
[ --passwordbox ]    显示一个输入框,它隐藏文本
[ --passwordfrom ]  显示一个来源于标签并且隐藏的文本字段
[ --radiolist ]      提供一个菜单项目组,只有一个项目,可以选择  (单选框 )
[ --tailbox ]        在一个滚动窗口文件中使用tail命令来显示文本
[ --tailboxbg]     跟tailbox类似,但是在background模式下操作
[ --textbox ]       在带有滚动条的文本框中显示文件的内容  (文本框)
[ --timebox ]      提供一个窗口,选择小时,分钟,秒
[ --yesno ]     提供一个带有yes和no按钮的简单信息框  (是/否框)

需要使用dialog图形编程得先安装diglog软件包:

[[email protected] ~]# yum -y install dialog

dialog工具其实就是一个非常简单的带有各种各样的参数和选项的程序,它可以使显示各种不同类型的图形框,如是/否框、单选框、输入框。脚本程序可以通过dialog的退出状态或标准错误流来获取用户的选择或输入。接下来让我们一步一步走人dialog的世界:

dialog命令示例:
1.消息框

格式:dialog  --msgbox  text   height  width

举例:

[[email protected] ~]# dialog --title "title name" --msgbox "This is a msgboxinfo" 10 25

执行所示:

2.yesno框

格式:dialog --yesno  text  height  width

举例:

[[email protected] ~]# dialog --title "title name" --no-shadow --yesno "Delete the file /tmp/etc/issue" 10 25

执行所示:

3.输入框

格式:dialog --inputbox text height width

举例:

[[email protected] ~]# dialog --title "Input your name" --inputbox "Please input your name:" 10 25 2>/tmp/name.txt

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

执行所示:

4.密码框

格式:dialog  --passwordbox text height width [init]

举例:

[[email protected] ~]# dialog --title "Password" --passwordbox "Please give a password for the new user." 10 45

执行所示:

这样我们的密码就暴露出来了,是不是很不安全,所以通常我们会加上一个安全选项--insecure 将每个字符用*来显示出来.

举例:

[[email protected] ~]# dialog --title "Password" --insecure --passwordbox "Please give a password for the new user." 10 45

执行所示:

5.文本框

格式:dialog --textbox file height width

举例:

[[email protected] ~]# dialog --title "The is fstabfile" --textbox /etc/fstab 17 100

执行所示:

6.菜单框

格式:dialog --menu text height width  menu-height tag1 item1 tag2 item2 …

举例:

[[email protected] ~]# dialog --title "Pick a choice" --menu "Choose one" 12 35 5 1 "Welcome to my Samleeblog" 2 "Welcome to LinuxHome" 3 "Quit"

执行所示:

7.Fselect框(文件选框)

格式:dialog --fselect filepath height width

举例:

[[email protected] ~]# dialog --title "Select File" --fselect /etc/ 8 50

执行所示:

8.复选框

格式:dialog  --checklist "Test" height width  menu-height  tag1 item1 tag2 item2 …

举例:

[[email protected] ~]# dialog --backtitle "CheckSystemTools" --checklist "Toos" 25 55 10 M Show_Memory_Management 1 D Show_Disk_Management 2

执行所示:

9.显示日历

格式:dialog --calendar "Date" height width day month year

举例:

##显示今日日期

[[email protected] ~]# dialog --title "Good Day" --calendar "Show Today" 6 50

执行所示:

##显示指定日期:

[[email protected] ~]# dialog --title "Good Day" --calendar "Show Today" 6 50 21 2 2013

执行所示:

10.进度框架
格式:dialog --gauge text height width  [<percent>]
举例
##固定进度条显示

[[email protected] ~]# dialog --title "Show_Copy_File" --gauge "File...." 7 30 53

执行所示:

##动态进度条显示

[[email protected] ~]# for i in {1..100};do echo $i;sleep 0.1;done|dialog --title "Show_Copy_File" --gauge "CopyFile..." 8 28

执行所示:

#结合脚本实现复制文件进度显示
编辑一个copyfilegauge.sh脚本内容如下:

[[email protected] ~]# vim copyfilegauge.sh
#!/bin/bash
# cpfilegaugeshow
declare -i PERCENT=0
(
    for I in /etc/*;do
        if [ $PERCENT -le 100 ];then
            cp -r $I /tmp/samlee 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

[[email protected] ~]# sh copyfilegauge.sh

执行脚本所示:

11.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键在窗口之间切换。

举例:

[[email protected] ~]# 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

执行所示:

综合应用实例之个人调查表

脚本内容如下:

[[email protected] ~]# cat usercheckfrom.sh 
#/bin/bash
dialog --title "Personal questionnaire" --msgbox "Welcome to my simple survey" 9 35
dialog --title "Confirm" --yesno "Are you willing to take part?" 9 35
if [ $? != 0 ];then
    dialog --infobox "Thank you anyway!" 5 30
    sleep 2
    dialog --clear
    exit 0
fi
dialog --title "Personal questionnaire" --inputbox "Please enter your name" 9 30 2>_1.txt
Q_NAME=$(cat _1.txt)
dialog --menu "$Q_NAME,what music do you like best?" 15 30 4 1 "Classical" 2 "Jazz" 3 "Country" 4 "Other" 2>_1.txt
Q_MUSIC=$(cat _1.txt)
if [ "$Q_MUSIC" == "1" ];then
    dialog --infobox "Good choice!" 5 30
else
    dialog --infobox "Thank you anyway" 5 30
fi
sleep 5
dialog --clear
exit 0

执行所示:

综合应用实例之测试程序

脚本内容如下:

#!/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

执行所示:

时间: 2024-10-08 20:24:17

Shell图形界面dialog应用详解的相关文章

JAVA 图形界面开发基础详解

/*文章中用到的代码只是一部分,需要源码的可通过邮箱联系我 [email protected]*/ 与C的win32一样,JAVA也有自己的图形界面开发,将在此篇博客中对基础部分进行讲解. 1.Java提供的图形界面类有哪些? Java提供了两套图形界面 (1)AWT组建(基础) AWT组件是jdk1.0的时候推出的图形界面类,它是位于java.awt包下的类.   当时在开发AWT组件时,采用的语言是C和C++,并且还调用了操作系统底层的绘图函数来实现AWT组件(我们看到的图形界面实际上画出来

Activity界面绘制过程详解

Activity界面绘制过程详解 设置界面首先就是Activity.setContentView()方法:我们先看一下他的源码: /** * Set the activity content from a layout resource. The resource will be * inflated, adding all top-level views to the activity. * * @param layoutResID Resource ID to be inflated. *

【Android UI设计】Dialog对话框详解(二)

上一篇我们介绍了Dialog的基本使用方法,[Android UI设计]Dialog对话框详解(一)今天继续介绍,废话不多说,今天主要实现ProgressDialog和透明Dialog两种效果,最后介绍一下github上的一个Dialog动画开源库,里面包含多种动画特效,效果图如下: 一.ProgressDialog基本使用 1.ProgressDialog关键代码 mProgressDialog = new ProgressDialog(MainActivity.this); // 圆形pro

(转)shell命令:echo命令详解

shell命令:echo命令详解 原文:https://www.cnblogs.com/xyz0601/archive/2015/04/23/4450736.html 功能说明:显示文字. 语 法:echo [-ne][字符串] / echo [--help][--version] 补充说明:echo会将输入的字符串送往标准输出.输出的字符串间以空白字符隔开, 并在最后加上换行号. 参 数: -n 不要在最后自动换行 -e 打开反斜杠ESC转义. 若字符串中出现以下字符,则特别加以处理,而不会将

(转)Shell中read的用法详解

Shell中read的用法详解 原文:http://blog.csdn.net/jerry_1126/article/details/77406500 read的常用用法如下: read -[pstnd] var1 var2 ... -p 提示语句-n 字符个数-s 屏蔽回显-t 等待时间-d 输入分界 [plain] view plain copy 01). read                           # 从标准输入读取一行并赋值给特定变量REPLY [email prote

Shell学习之Bash变量详解(二)

Shell学习之Bash变量详解 目录 Bash变量 Bash变量注意点 用户自定义变量 环境变量 位置参数变量 预定义变量 Bash变量 用户自定义变量:在Bash中由用户定义的变量. 环境变量:这种变量中主要保存和系统操作环境相关的数据. 位置参数变量:这种变量主要是用来向脚本当中传递参数或数据的,变量名不能自定义,变量作用是固定的. 预定义变量:是Bash中已经定义好的变量,变量名不能自定义,变量作用也是固定的. Bash变量注意点 1.变量名称可以由字母.数字和下划线组成,但是不能以数字

hbase shell基础和常用命令详解

HBase是Google Bigtable的开源实现,它利用Hadoop HDFS作为其文件存储系统,利用Hadoop MapReduce来处理HBase中的海量数据,利用Zookeeper作为协同服务. 1. 简介 HBase是一个分布式的.面向列的开源数据库,源于google的一篇论文<bigtable:一个结构化数据的分布式存储系统>.HBase是Google Bigtable的开源实现,它利用Hadoop HDFS作为其文件存储系统,利用Hadoop MapReduce来处理HBase

hbase shell基础和常用命令详解(转)

HBase shell的基本用法 hbase提供了一个shell的终端给用户交互.使用命令hbase shell进入命令界面.通过执行 help可以看到命令的帮助信息. 以网上的一个学生成绩表的例子来演示hbase的用法. name grad course math art Tom 5 97 87 Jim 4 89 80 这里grad对于表来说是一个只有它自己的列族,course对于表来说是一个有两个列的列族,这个列族由两个列组成math和art,当然我们可以根据我们的需要在course中建立更

shell 三剑客之 sed pattern 详解

sed 基础介绍 语法格式 sed 处理过程 sed 选项 cat sed.txt '-p' 打印输出 ,默认输出两次,流输出一次,源文件输出一次 sed 'p' sed.txt -n  只显示处理的行,静默模式 sed -n 'p' sed.txt sed '/python/p' sed.txt sed -n '/python/p' sed.txt 通过文件引入规则进行流处理 cat edit.sed 引入一个文件中定义的规则 sed -n -f edit.sed sed.txt -r支持扩展