📄 msgbox1
字号:
#!/bin/sh# $Id: msgbox1,v 1.4 2003/08/15 19:40:37 tom Exp $: ${DIALOG=dialog}$DIALOG --title "MESSAGE BOX" --clear \ --msgbox "Hi, this is a simple message box. You can use this to display any message you like. The box will remain until you press the ENTER key. This box is being displayed with dialogs default aspect ratio of 9." 0 0$DIALOG --aspect 12 --title "MESSAGE BOX aspect=12" --clear \ --msgbox "Hi, this is a simple message box. You can use this to display any message you like. The box will remain until you press the ENTER key. This box is being displayed with an aspect ratio of 12." 0 0$DIALOG --aspect 6 --title "MESSAGE BOX aspect=6" --clear \ --msgbox "Hi, this is a simple message box. You can use this to display any message you like. The box will remain until you press the ENTER key. This box is being displayed with an aspect ratio of 6." 0 0$DIALOG --aspect 6 --cr-wrap --title "MESSAGE BOX aspect=6 with --cr-wrap" \ --clear --msgbox "\ Hi, this is a simple message box. You can use this to display any message you like.The box will remain until you press the ENTER key. This box is being displayed with an aspect ratio of 6, and using --cr-wrap.\n" 0 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -