                        OUT - Text Output Utility

    SYNTAX:

        out text [>file]

    PARAMETERS:

        text    Text to be output. You may include within this text any of the
                following "escaped character" sequences:

                "\b"    - a backspace character is output.
                "\f"    - a formfeed character is output.
                "\n"    - the newline (carriage-return, line-feed) sequence
                          is output.
                "\r"    - a carriage-return character is output.
                "\t"    - a horizontal tab is output.
                "\v"    - a vertical tab is output.
                "\nnn"  - a byte containing octal value "nnn" is output.
                "\0xnn" - a byte containing hexadecimal value "nn" is output.
                "\\"    - the backslash character is output.

                To include the space character in your output, you must
                quote it.

    DESCRIPTION:

        This utility outputs the specified text to the standard output file
        (which is, of course, redirectable).

    EXAMPLES:

        Any one of the following commands will cause the terminal's bell to
        be rung:

            out \7
            out \007
            out \0x7
            out \0x07

        Any one of the following commands will output the string "abc 123":

            out abc ' ' 123
            out "abc 123"

        Any one of the following commands will output the string "abc123":

            out abc123
            out abc 123

        The following command outputs a single double-quote character:

            out """"

        The following command outputs a single quote character:

            out ''''

        The following command clears the terminal's screen:

            out \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
