2 recho -- really echo args, bracketed with <> and with invisible chars
9 /* Copyright (C) 2002-2005 Free Software Foundation, Inc.
11 This file is part of GNU Bash, the Bourne Again SHell.
13 Bash is free software: you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation, either version 3 of the License, or
16 (at your option) any later version.
18 Bash is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with Bash. If not, see <http://www.gnu.org/licenses/>.
27 #if defined (HAVE_CONFIG_H)
43 for (i
= 1; i
< argc
; i
++) {
44 printf("argv[%d] = <", i
);
55 register unsigned char *s
;
57 for (s
= (unsigned char *)str
; s
&& *s
; s
++) {
61 } else if (*s
== 127) {