infobox3
来自「This version of dialog, formerly known a」· 代码 · 共 22 行
TXT
22 行
#! /bin/sh# $Id: infobox3,v 1.2 2003/08/15 19:40:37 tom Exp $: ${DIALOG=dialog}left=10unit="seconds"while test $left != 0do$DIALOG --sleep 1 \ --begin 5 0 \ --title "INFO BOX" \ --infobox "Hi, this is an information box. It isdifferent from a message box: it willnot pause waiting for input after displayingthe message. The pause here is only introducedby the sleep command within dialog.You have $left $unit to read this..." 0 0left=`expr $left - 1`test $left = 1 && unit="second"done
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?