msgbox1
来自「This version of dialog, formerly known a」· 代码 · 共 31 行
TXT
31 行
#!/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 + =
减小字号Ctrl + -
显示快捷键?