1#!/bin/sh 2# $Id: msgbox2,v 1.7 2010/01/13 10:26:52 tom Exp $ 3 4. ./setup-vars 5 6$DIALOG --title "MESSAGE BOX" --trim "$@" \ 7 --msgbox "Hi, this is a simple message box. You can use this to 8 display any message you like. The box will remain until 9 you press the ENTER key. This box is being displayed 10 with dialogs default aspect ratio of 9." 0 0 11test $? = $DIALOG_ESC && exit 12 13$DIALOG --aspect 12 --title "MESSAGE BOX aspect=12" --trim "$@" \ 14 --msgbox "Hi, this is a simple message box. You can use this to 15 display any message you like. The box will remain until 16 you press the ENTER key. This box is being displayed 17 with an aspect ratio of 12." 0 0 18test $? = $DIALOG_ESC && exit 19 20$DIALOG --aspect 6 --title "MESSAGE BOX aspect=6" --trim "$@" \ 21 --msgbox "Hi, this is a simple message box. You can use this to 22 display any message you like. The box will remain until 23 you press the ENTER key. This box is being displayed 24 with an aspect ratio of 6." 0 0 25test $? = $DIALOG_ESC && exit 26 27$DIALOG --aspect 6 --cr-wrap --title "MESSAGE BOX aspect=6 with --cr-wrap" \ 28 --trim --msgbox " "$@" \ 29 Hi, this is a simple 30 message box. You can 31 use this to display any 32 message you like. 33The 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 34test $? = $DIALOG_ESC && exit 35