liunx 下的dialog 工具是一个可以和shell脚本配合使用的文本界面下的创建对话框的工具。
每个对话框提供的输出有两种形式: 1. 将所有输出到stderr 输出,不显示到屏幕。 2. 使用退出状态码,“OK”为0,“NO”为1,"ESC"为255[--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>] 设置在一份清单,表格或菜单中的默认项目。通常在框中的第一项是默认窗体类型:
使用命令dialog也可以直接查看具体参数常见的对话框控件选项有:
[ –calendar ] 提供了一个日历,让你可以选择日期 [ –checklist ] 允许你显示一个选项列表,每个选项都可以被单独的选择 (复选框) [ –from ] 允许您建立一个带标签的文本字段,并要求填写 [ –fselect ] 提供一个路径,让你选择浏览的文件 [ –gauge ] 显示一个表,呈现出完成的百分比,就是显示出进度。 [ –infobox ] 显示消息后,(没有等待响应)对话框立刻返回,但不清除屏幕 (信息框) [ –inputbox ] 让用户输入文本 (输入框 ) [ –inputmenu ] 提供一个可供用户编辑的菜单 (可编辑的菜单框) [ –menu ] 显示一个列表供用户选择 (菜单框) [ –msgbox ] 显示一条消息,并要求用户选择一个确定按钮 (消息框 ) [ –pause ] 显示一个表格用来显示一个指定的暂停期的状态 [ –passwordbox ] 显示一个输入框,它隐藏文本 [ –passwordfrom ] 显示一个来源于标签并且隐藏的文本字段 [ –radiolist ] 提供一个菜单项目组,只有一个项目,可以选择 (单选框 ) [ –tailbox ] 在一个滚动窗口文件中使用tail命令来显示文本 [ –tailboxbg] 跟tailbox类似,但是在background模式下操作 [ –textbox ] 在带有滚动条的文本框中显示文件的内容 (文本框) [ –timebox ] 提供一个窗口,选择小时,分钟,秒[ –yesno ] 提供一个带有yes和no按钮的简单信息框 (是/否框)
#!/bin/bash # vim gauge.shdeclare -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
#!/bin/bashyesno() { 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