| /src/usr.bin/make/unit-tests/ |
| comment.exp | 1 echo This is a shell comment: # comment 2 This is a shell comment: 3 echo This is not a shell comment: '# comment' 4 This is not a shell comment: # comment 5 A shell comment can#not start in the middle of a word.
|
| shell-custom.mk | 1 # $NetBSD: shell-custom.mk,v 1.1 2020/10/03 14:39:36 rillig Exp $ 3 # Tests for using a custom shell for running the commands. 5 .SHELL: name="sh" path="echo" 6 # TODO: demonstrate the other shell features as well:
|
| shell-sh.mk | 1 # $NetBSD: shell-sh.mk,v 1.2 2023/12/24 16:48:30 sjg Exp $ 3 # Tests for using a bourne shell for running the commands. 4 # This is the default shell, so there's nothing surprising. 6 .SHELL: name="sh"
|
| varname-dot-shell.exp | 1 Parsing varname-dot-shell.mk:10: ORIG_SHELL:= ${.SHELL} 3 Var_Parse: ${.SHELL} (eval-keep-dollar-and-undefined) 4 Global: ignoring delete '.SHELL' as it is not found 5 Command: .SHELL = (details omitted) 7 Parsing varname-dot-shell.mk:12: .SHELL= overwritten 8 Global: ignoring '.SHELL = overwritten' due to a command line variable of the same name 9 Parsing varname-dot-shell.mk:13: .if ${.SHELL} != ${ORIG_SHELL [all...] |
| shell-ksh.mk | 1 # $NetBSD: shell-ksh.mk,v 1.2 2025/06/05 21:56:54 rillig Exp $ 3 # Tests for using a Korn shell for running the commands. 7 # The shell path must be an absolute path. 11 .SHELL: name="ksh" path="${KSH}" 14 # In parallel mode, the shell->noPrint command is filtered from 32 # In the Korn shell, "set +v" is set as the noPrint command.
|
| varmod-shell.exp | 1 make: varmod-shell.mk:25: warning: Command "echo word; (exit 13)" exited with status 13 2 make: varmod-shell.mk:29: warning: Command "echo word; (exit 13)" exited with status 13 8 make: varmod-shell.mk:36: warning: Command "echo word; (exit 13)" exited with status 13
|
| var-op-shell.exp | 1 make: var-op-shell.mk:32: warning: Command "echo "failed"; (exit 13)" exited with status 13 2 make: var-op-shell.mk:39: warning: Command "exit 13" exited with status 13 3 make: var-op-shell.mk:62: warning: "kill $$" exited on a signal 5 make: var-op-shell.mk:69: warning: Command "/bin/no/such/command" exited with status 127
|
| /src/external/gpl2/gettext/dist/gettext-runtime/man/ |
| envsubst.x | 2 envsubst \- substitutes environment variables in shell format strings
|
| /src/external/bsd/elftosb/dist/ |
| makefile | 10 UNAMES = $(shell uname -s) 14 SRC_DIR = $(shell pwd) 20 SRC_DIR = $(shell pwd)
|
| /src/bin/ksh/ |
| mkman | 12 echo "usage: $0 [-v] which-shell ksh.Man-file" 1>&2 15 shell=$1 18 case $shell in 22 echo "$0: bad shell option (must be sh or ksh)" 1>&2
|
| /src/external/public-domain/sqlite/dist/ |
| Makefile.fallback | 18 sqlite3: shell.c sqlite3.c 19 $(CC) $(CFLAGS) $(COPTS) -o sqlite3 shell.c sqlite3.c $(LIBS)
|
| /src/external/bsd/atf/dist/atf-sh/ |
| atf-sh.cpp | 68 const std::string shell = atf::config::get("atf_shell"); local 73 "Atf_Shell='" + shell + "' ; " + 82 construct_argv(const std::string& shell, const int interpreter_argc, 92 argv[0] = shell.c_str(); 121 "atf-sh is a shell interpreter that extends the functionality of the " 140 const std::string shell = atf::config::get("atf_shell"); local 141 const char** argv = construct_argv(shell, m_argc, m_argv); 145 const int ret = execv(shell.c_str(), const_cast< char** >(argv)); 147 std::cerr << "Failed to execute " << shell << ": " << std::strerror(errno)
|
| /src/external/gpl3/gcc.old/dist/contrib/ |
| git-backport.py | 34 subprocess.run('git cherry-pick -x %s' % args.revision, shell=True) 35 subprocess.run(fixup_script, shell=True)
|
| /src/external/gpl3/gcc/dist/contrib/ |
| git-backport.py | 34 subprocess.run('git cherry-pick -x %s' % args.revision, shell=True) 35 subprocess.run(fixup_script, shell=True)
|
| /src/external/gpl2/gettext/dist/djgpp/ |
| getpwnam.c | 18 static char shell [] = "sh"; variable 32 rv.pw_shell = getenv("SHELL"); 36 rv.pw_shell = shell;
|
| /src/bin/sh/ |
| mkbuiltins | 42 shell=$1 47 if grep '^#define JOBS[ ]*1' ${shell} > /dev/null 58 #include "shell.h"
|
| /src/external/bsd/wpa/dist/wpa_supplicant/dbus/ |
| Makefile | 41 DBUS_LIBS := $(shell $(PKG_CONFIG) --libs dbus-1) 44 DBUS_INCLUDE := $(shell $(PKG_CONFIG) --cflags dbus-1) 48 DBUS_INCLUDE += $(shell xml2-config --cflags) 49 DBUS_LIBS += $(shell xml2-config --libs)
|
| /src/external/gpl3/gcc.old/dist/fixincludes/ |
| mkheaders.in | 85 for shell in $CONFIG_SHELL $SHELL @SHELL@ /bin/sh ""; do 86 if { test -x $shell || test -x $shell.exe; } \ 87 && $shell $mkinstalldirs > /dev/null 2>&1; then 88 mkinstalldirs="$shell $mkinstalldirs" 90 elif test x$shell = x; then 97 echo mkheaders: please rerun with CONFIG_SHELL set to a working Bourne shell >&2 112 $shell ./fixinc.sh ${subincdir} [all...] |
| /src/external/gpl3/gcc/dist/fixincludes/ |
| mkheaders.in | 85 for shell in $CONFIG_SHELL $SHELL @SHELL@ /bin/sh ""; do 86 if { test -x $shell || test -x $shell.exe; } \ 87 && $shell $mkinstalldirs > /dev/null 2>&1; then 88 mkinstalldirs="$shell $mkinstalldirs" 90 elif test x$shell = x; then 97 echo mkheaders: please rerun with CONFIG_SHELL set to a working Bourne shell >&2 112 $shell ./fixinc.sh ${subincdir} [all...] |
| /src/external/gpl3/gdb/dist/gdb/syscalls/ |
| Makefile | 20 FILES=$(shell ls *.xml.in | grep -v linux-defaults.xml.in | sed 's/\.in//')
|
| /src/external/gpl3/gdb.old/dist/gdb/syscalls/ |
| Makefile | 20 FILES=$(shell ls *.xml.in | grep -v linux-defaults.xml.in | sed 's/\.in//')
|
| /src/external/public-domain/sqlite/bin/ |
| Makefile | 5 SRCS= shell.c
|
| /src/usr.sbin/chroot/ |
| chroot.c | 118 const char *shell; local 191 if ((shell = getenv("SHELL")) == NULL) 192 shell = _PATH_BSHELL; 193 execlp(shell, shell, "-i", NULL); 194 err(1, "%s", shell);
|
| /src/usr.bin/apply/ |
| apply.c | 202 * Private version of system(3). Use the user's SHELL environment 203 * variable as the shell to execute. 208 static const char *name, *shell; local 214 if (shell == NULL) { 215 if ((shell = getenv("SHELL")) == NULL) 216 shell = _PATH_BSHELL; 217 if ((name = strrchr(shell, '/')) == NULL) 218 name = shell; 237 (void)execl(shell, name, "-c", command, (char *)NULL) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/jit/docs/examples/tut04-toyvm/ |
| Makefile | 8 g++ -Wall -g -o $@ $< $(shell pkg-config --cflags --libs libgccjit)
|