📄 infobox2
字号:
#! /bin/sh# $Id: infobox2,v 1.2 2003/08/15 19:40:37 tom Exp $: ${DIALOG=dialog}left=10unit="seconds"while test $left != 0do$DIALOG --sleep 1 \ --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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -