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

123456

/freebsd-10-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 DMakefile3 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/shell/path_select
15 FILES+= shell
/freebsd-10-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-10-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 DMakefile3 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/shell/path
/freebsd-10-stable/usr.sbin/setpmac/
H A Dsetpmac.c60 const char *shell; local
86 if (!(shell = getenv("SHELL")))
87 shell = _PATH_BSHELL;
88 execlp(shell, shell, "-i", (char *)NULL);
89 err(1, "%s", shell);
/freebsd-10-stable/usr.bin/bmake/tests/shell/
H A DMakefile3 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/shell
/freebsd-10-stable/contrib/openresolv/
H A DGNUmakefile2 CONFIG_MK?=$(shell test -e config.mk && echo config.mk || echo config-null.mk)
/freebsd-10-stable/usr.bin/bmake/tests/shell/replace/
H A DMakefile3 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/shell/replace
15 FILES+= shell
/freebsd-10-stable/contrib/libstdc++/libmath/
H A DMakefile.am26 gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
/freebsd-10-stable/usr.bin/bmake/tests/
H A DMakefile12 TESTS_SUBDIRS+= shell
/freebsd-10-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-10-stable/usr.bin/newgrp/
H A Dnewgrp.c262 const char *shell; local
265 shell = pwd->pw_shell;
266 if (*shell == '\0')
267 shell = _PATH_BSHELL;
286 setenv("SHELL", shell, 1);
293 if (asprintf(args, "-%s", basename(shell)) < 0)
297 execv(shell, args);
298 err(1, "%s", shell);
304 const char *shell; local
306 shell
[all...]
/freebsd-10-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-10-stable/usr.bin/apply/
H A Dapply.c68 char *cmd, *name, *p, *shell, *slashp, *tmpshell; local
113 * Figure out the shell and name arguments to pass to execl()
114 * in exec_shell(). Always malloc() shell and just set name
115 * to point at the last part of shell if there are any backslashes,
118 * shell with it.
120 shell = name = NULL;
122 shell = (tmpshell != NULL) ? strdup(tmpshell) : strdup(_PATH_BSHELL);
123 if (shell == NULL)
125 slashp = strrchr(shell, '/');
126 name = (slashp != NULL) ? slashp + 1 : shell;
[all...]
/freebsd-10-stable/contrib/wpa/wpa_supplicant/dbus/
H A DMakefile42 DBUS_LIBS := $(shell $(PKG_CONFIG) --libs dbus-1)
45 DBUS_INCLUDE := $(shell $(PKG_CONFIG) --cflags dbus-1)
49 DBUS_INCLUDE += $(shell xml2-config --cflags)
50 DBUS_LIBS += $(shell xml2-config --libs)
/freebsd-10-stable/usr.bin/bmake/tests/shell/builtin/
H A DMakefile3 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/shell/builtin
/freebsd-10-stable/usr.bin/bmake/tests/shell/meta/
H A DMakefile3 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/shell/meta
/freebsd-10-stable/usr.bin/bmake/tests/shell/select/
H A DMakefile3 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/shell/select
/freebsd-10-stable/usr.sbin/jexec/
H A Djexec.c64 const char *username, *shell, *term; local
137 /* Run the specified command, or the shell */
142 if (!(shell = getenv("SHELL")))
143 shell = _PATH_BSHELL;
144 if (execlp(shell, shell, "-i", NULL) < 0)
145 err(1, "execlp: %s", shell);
/freebsd-10-stable/contrib/less/
H A Dlsystem.c37 * Pass the specified command to a shell to be executed.
47 char *shell; local
127 * If the command is empty, just invoke a shell.
131 if ((shell = lgetenv("SHELL")) != NULL && *shell != '\0')
134 p = save(shell);
140 int len = (int) (strlen(shell) + strlen(esccmd) + 5);
142 SNPRINTF3(p, len, "%s %s %s", shell, shell_coption(), esccmd);
241 * Pipe a section of the input file into the given shell command.
283 * Create a pipe to the given shell comman
[all...]
/freebsd-10-stable/usr.bin/finger/
H A Dfinger.h47 char *shell; /* user's shell */ member in struct:person
/freebsd-10-stable/usr.bin/tip/tip/
H A Dcmdtab.c46 { '!', NORM, "shell", shell },
/freebsd-10-stable/cddl/usr.sbin/dtrace/tests/tools/
H A Dgentest.sh10 excludes: A shell script which defines test cases that are to be skipped,

Completed in 302 milliseconds

123456