1 This file is echo.def
, from which is created echo.c.
2 It implements the builtin
"echo" in Bush.
4 Copyright (C
) 1987-2018 Free Software Foundation
, Inc.
6 This file is part of GNU Bush
, the Bourne Again SHell.
8 Bush is free software
: you can redistribute it and
/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation
, either version
3 of the License
, or
11 (at your option
) any later version.
13 Bush is distributed in the hope that it will be useful
,
14 but WITHOUT ANY WARRANTY
; without even the implied warranty of
15 MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with Bush. If not
, see
<http
://www.gnu.org
/licenses
/>.
24 #if
defined (HAVE_UNISTD_H
)
28 #include
"../src/bushansi.h"
31 #include
"../src/shell.h"
36 $FUNCTION echo_builtin
38 $SHORT_DOC echo
[-neE
] [arg ...
]
39 Write arguments to the standard output.
41 Display the ARGs
, separated by a single space character and followed by a
42 newline
, on the standard output.
45 -n do not append a newline
46 -e enable interpretation of the following backslash escapes
47 -E explicitly suppress interpretation of backslash escapes
49 `echo
' interprets the following backslash-escaped characters:
52 \c suppress further output
61 \0nnn the character whose ASCII code is NNN (octal). NNN can be
63 \xHH the eight-bit character whose value is HH (hexadecimal). HH
64 can be one or two hex digits
65 \uHHHH the Unicode character whose value is the hexadecimal value HHHH.
66 HHHH can be one to four hex digits.
67 \UHHHHHHHH the Unicode character whose value is the hexadecimal value
68 HHHHHHHH. HHHHHHHH can be one to eight hex digits.
71 Returns success unless a write error occurs.
75 $FUNCTION echo_builtin
77 $SHORT_DOC echo [-n] [arg ...]
78 Write arguments to the standard output.
80 Display the ARGs on the standard output followed by a newline.
83 -n do not append a newline
86 Returns success unless a write error occurs.
90 # define VALID_ECHO_OPTIONS "neE"
92 # define VALID_ECHO_OPTIONS "n"
95 /* System V machines already have a /bin/sh with a v9 behaviour. We
96 give Bush the identical behaviour for these machines so that the
97 existing system shells won't barf. Regrettably
, the SUS v2 has
98 standardized the Sys V echo behavior. This variable is external
99 so that we can have a `shopt
' variable to control it at runtime. */
100 #if defined (DEFAULT_ECHO_TO_XPG) || defined (STRICT_POSIX)
104 #endif /* DEFAULT_ECHO_TO_XPG */
106 /* Print the words in LIST to standard output. If the first word is
107 `-n', then don
't print a trailing newline. We also support the
108 echo syntax from Version 9 Unix systems. */
113 int display_return, do_v9, i, len;
119 if (posixly_correct && xpg_echo)
122 for (; list && (temp = list->word->word) && *temp == '-'; list = list->next)
124 /* If it appears that we are handling options, then make sure that
125 all of the options specified are actually valid. Otherwise, the
126 string should just be echoed. */
129 for (i = 0; temp[i]; i++)
131 if (strchr (VALID_ECHO_OPTIONS, temp[i]) == 0)
135 /* echo - and echo -<nonopt> both mean to just echo the arguments. */
136 if (*temp == 0 || temp[i])
139 /* All of the options in TEMP are valid options to ECHO.
148 #if defined (V9_ECHO)
157 goto just_echo; /* XXX */
164 clearerr (stdout); /* clear error before writing and testing success */
169 temp = do_v9 ? ansicstr (list->word->word, STRLEN (list->word->word), 1, &i, &len)
175 for (s = temp; len > 0; len--)
181 fflush (stdout); /* Fix for bug in SunOS 5.5 printf(3) */
201 return (sh_chkwrite (EXECUTION_SUCCESS));