Searched refs:shell (Results 1 - 25 of 153) sorted by relevance

1234567

/freebsd-11-stable/usr.bin/bmake/tests/shell/path_select/
H A DMakefile.test4 # This selects a builtin shell according to the name, but executes it
8 # really our shell is executed.
15 .SHELL: name=sh path=${.CURDIR}/shell
17 @: This is the shell.
21 .SHELL: name=csh path=${.CURDIR}/shell
23 @: This is the C-shell.
27 .SHELL: name=ksh path=${.CURDIR}/shell
29 @: This is the Korn-shell.
H A DMakefile5 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/shell/path_select
16 ${PACKAGE}FILES+= shell
/freebsd-11-stable/contrib/sendmail/contrib/
H A Dpasswd-to-alias.pl13 ($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) = @a;
17 if (!-d $dir || !-x $shell || $shell =~ m!/bin/(false|true)$!) {
/freebsd-11-stable/usr.bin/bmake/tests/shell/path/
H A DMakefile.test5 # also selectes the shell without specifying the name.
8 # really our shell is executed.
17 @: This is the shell.
23 @: This is the C-shell.
29 @: This is the Korn-shell.
H A DMakefile5 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/shell/path
/freebsd-11-stable/usr.sbin/setpmac/
H A Dsetpmac.c62 const char *shell; local
88 if (!(shell = getenv("SHELL")))
89 shell = _PATH_BSHELL;
90 execlp(shell, shell, "-i", (char *)NULL);
91 err(1, "%s", shell);
/freebsd-11-stable/contrib/openresolv/
H A DGNUmakefile2 CONFIG_MK?=$(shell test -e config.mk && echo config.mk || echo config-null.mk)
/freebsd-11-stable/usr.bin/bmake/tests/shell/
H A DMakefile3 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/shell
/freebsd-11-stable/contrib/sqlite3/
H A DMakefile.fallback18 sqlite3: shell.c sqlite3.c
19 $(CC) $(CFLAGS) $(COPTS) -o sqlite3 shell.c sqlite3.c $(LIBS)
/freebsd-11-stable/contrib/libstdc++/libmath/
H A DMakefile.am26 gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
/freebsd-11-stable/usr.bin/bmake/tests/shell/replace/
H A DMakefile5 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/shell/replace
16 ${PACKAGE}FILES+= shell
/freebsd-11-stable/usr.bin/bmake/tests/
H A DMakefile11 TESTS_SUBDIRS+= shell
/freebsd-11-stable/contrib/wpa/wpa_supplicant/dbus/
H A DMakefile41 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)
/freebsd-11-stable/contrib/atf/atf-sh/
H A Dintegration_test.sh88 This is the custom shell
92 cat >custom-shell <<EOF
94 echo "This is the custom shell"
97 chmod +x custom-shell
100 atf_check -s eq:0 -o file:expout -e empty "${ATF_SH}" -s ./custom-shell tp
107 This is the custom shell
111 cat >custom-shell <<EOF
113 echo "This is the custom shell"
116 chmod +x custom-shell
119 tp "-s$(pwd)/custom-shell"
[all...]
H A Datf-sh.cpp65 const std::string shell = atf::env::get("ATF_SHELL", ATF_SHELL); local
70 "Atf_Shell='" + shell + "' ; " +
79 construct_argv(const std::string& shell, const int interpreter_argc, argument
89 argv[0] = shell.c_str();
123 "atf-sh is a shell interpreter that extends the functionality of the "
140 opts.insert(option('s', "shell", "Path to the shell interpreter to use; "
/freebsd-11-stable/usr.bin/newgrp/
H A Dnewgrp.c263 const char *shell; local
266 shell = pwd->pw_shell;
267 if (*shell == '\0')
268 shell = _PATH_BSHELL;
287 setenv("SHELL", shell, 1);
294 if (asprintf(args, "-%s", shell) < 0)
298 execv(shell, args);
299 err(1, "%s", shell);
305 const char *shell; local
307 shell
[all...]
/freebsd-11-stable/usr.sbin/chroot/
H A Dchroot.c65 const char *shell; local
169 if (!(shell = getenv("SHELL")))
170 shell = _PATH_BSHELL;
171 execlp(shell, shell, "-i", (char *)NULL);
172 err(1, "%s", shell);
/freebsd-11-stable/gnu/lib/libreadline/
H A DMakefile.inc12 HISTSRC=history.c histexpand.c histfile.c histsearch.c shell.c mbutil.c
/freebsd-11-stable/usr.bin/apply/
H A Dapply.c70 char *cmd, *name, *p, *shell, *slashp, *tmpshell; local
115 * Figure out the shell and name arguments to pass to execl()
116 * in exec_shell(). Always malloc() shell and just set name
117 * to point at the last part of shell if there are any backslashes,
120 * shell with it.
122 shell = name = NULL;
124 shell = (tmpshell != NULL) ? strdup(tmpshell) : strdup(_PATH_BSHELL);
125 if (shell == NULL)
127 slashp = strrchr(shell, '/');
128 name = (slashp != NULL) ? slashp + 1 : shell;
[all...]
/freebsd-11-stable/usr.bin/bmake/tests/shell/select/
H A DMakefile5 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/shell/select
/freebsd-11-stable/usr.sbin/jexec/
H A Djexec.c66 const char *username, *shell, *term; local
139 /* Run the specified command, or the shell */
144 if (!(shell = getenv("SHELL")))
145 shell = _PATH_BSHELL;
146 if (execlp(shell, shell, "-i", NULL) < 0)
147 err(1, "execlp: %s", shell);
/freebsd-11-stable/contrib/less/
H A Dlsystem.c42 * Pass the specified command to a shell to be executed.
52 char *shell; local
134 * If the command is empty, just invoke a shell.
138 if ((shell = lgetenv("SHELL")) != NULL && *shell != '\0')
141 p = save(shell);
147 int len = (int) (strlen(shell) + strlen(esccmd) + 5);
149 SNPRINTF3(p, len, "%s %s %s", shell, shell_coption(), esccmd);
248 * Pipe a section of the input file into the given shell command.
290 * Create a pipe to the given shell comman
[all...]
/freebsd-11-stable/cddl/usr.sbin/dtrace/tests/tools/
H A Dgentest.sh10 excludes: A shell script which defines test cases that are to be skipped,
/freebsd-11-stable/usr.bin/bmake/tests/shell/builtin/
H A DMakefile5 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/shell/builtin
/freebsd-11-stable/usr.bin/bmake/tests/shell/meta/
H A DMakefile5 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/shell/meta

Completed in 138 milliseconds

1234567