1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Miscellaneous user commands, like `echo', `pwd', etc.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2016 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #define n_FILE cmd_misc
38 #ifndef HAVE_AMALGAMATION
42 /* Expand the shell escape by expanding unescaped !'s into the last issued
43 * command where possible */
44 static char const *a_cmisc_bangexp(char const *cp
);
46 /* c_echo(), c_echoerr() */
47 static int a_cmisc_echo(void *vp
, FILE *fp
);
50 a_cmisc_bangexp(char const *cp
){
51 static struct str last_bang
;
53 struct n_string xbang
, *bang
;
63 for(bang
= n_string_creat(&xbang
); (c
= *cp
++) != '\0';){
66 bang
= n_string_push_buf(bang
, last_bang
.s
, last_bang
.l
);
69 if(c
== '\\' && *cp
== '!'){
74 bang
= n_string_push_c(bang
, c
);
78 if(last_bang
.s
!= NULL
)
80 last_bang
.s
= n_string_cp(bang
);
81 last_bang
.l
= bang
->s_len
;
82 bang
= n_string_drop_ownership(bang
);
94 a_cmisc_echo(void *vp
, FILE *fp
){
95 char const **argv
, **ap
, *cp
;
98 for(ap
= argv
= vp
; *ap
!= NULL
; ++ap
){
101 if((cp
= fexpand(*ap
, FEXP_NSHORTCUT
| FEXP_NVAR
)) == NULL
)
118 cp
= a_cmisc_bangexp(v
);
121 run_command(ok_vlook(SHELL
), &mask
, COMMAND_FD_PASS
, COMMAND_FD_PASS
, "-c",
134 run_command(ok_vlook(SHELL
), 0, COMMAND_FD_PASS
, COMMAND_FD_PASS
, NULL
,
144 char buf
[PATH_MAX
]; /* TODO getcwd(3) may return a larger value */
147 if (getcwd(buf
, sizeof buf
) != NULL
) {
151 n_perr(_("getcwd"), 0);
165 if (*arglist
== NULL
)
167 else if ((cp
= fexpand(*arglist
, FEXP_LOCAL
| FEXP_NOPROTO
)) == NULL
)
169 if (chdir(cp
) == -1) {
183 rv
= a_cmisc_echo(v
, stdout
);
193 rv
= a_cmisc_echo(v
, stderr
);