Home
last modified time | relevance | path

Searched refs:shell (Results 1 – 25 of 579) sorted by relevance

12345678910>>...24

/freebsd-12.1/contrib/netbsd-tests/ipf/input/
H A Dni1915 # 192.168.113.3.1009 > 10.1.1.4.shell
21 # 192.168.113.3.1009 > 10.1.1.4.shell
27 # 10.1.1.4.shell > 10.1.1.1.1009
54 # 192.168.113.3.1009 > 10.1.1.4.shell
60 # 10.1.1.4.shell > 10.1.1.1.1009
66 # 192.168.113.3.1009 > 10.1.1.4.shell
75 # 10.1.1.4.shell > 10.1.1.1.1009
81 # 10.1.1.4.shell > 10.1.1.1.1009
93 # 10.1.1.4.shell > 10.1.1.1.1009
106 # 10.1.1.4.shell > 10.1.1.1.1009
[all …]
H A Dni2015 # 192.168.113.3.1009 > 10.1.1.4.shell
21 # 192.168.113.3.1009 > 10.1.1.4.shell
27 # 192.168.113.4.shell > 192.168.113.3.1009
54 # 192.168.113.3.1009 > 10.1.1.4.shell PUSH+ACK
60 # 192.168.113.4.shell > 192.168.113.3.1009 ACK
66 # 192.168.113.3.1009 > 10.1.1.4.shell PUSH+ACK
75 # 192.168.113.4.shell > 192.168.113.3.1009 ACK
87 # 192.168.113.3.1009 > 10.1.1.4.shell ACK
119 # 192.168.113.3.1009 > 10.1.1.4.shell ACK
132 # 192.168.113.3.1009 > 10.1.1.4.shell FIN+ACK
[all …]
/freebsd-12.1/contrib/file/magic/Magdir/
H A Dcommands6 #0 string/w : shell archive or script for antique kernel text
7 0 string/wt #!\ /bin/sh POSIX shell script text executable
9 0 string/wb #!\ /bin/sh POSIX shell script executable (binary data)
12 0 string/wt #!\ /bin/csh C shell script text executable
15 # korn shell magic, sent by George Wu, [email protected]
16 0 string/wt #!\ /bin/ksh Korn shell script text executable
18 0 string/wb #!\ /bin/ksh Korn shell script executable (binary data)
21 0 string/wt #!\ /bin/tcsh Tenex C shell script text executable
23 0 string/wt #!\ /usr/bin/tcsh Tenex C shell script text executable
61 # AT&T Bell Labs' Plan 9 shell
[all …]
/freebsd-12.1/usr.bin/newgrp/
H A Dnewgrp.c263 const char *shell; in loginshell() local
266 shell = pwd->pw_shell; in loginshell()
267 if (*shell == '\0') in loginshell()
268 shell = _PATH_BSHELL; in loginshell()
298 execv(shell, args); in loginshell()
299 err(1, "%s", shell); in loginshell()
305 const char *shell; in doshell() local
307 shell = pwd->pw_shell; in doshell()
308 if (*shell == '\0') in doshell()
310 execl(shell, shell, (char *)NULL); in doshell()
[all …]
/freebsd-12.1/contrib/atf/atf-sh/
H A Dintegration_test.sh88 This is the custom shell
92 cat >custom-shell <<EOF
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
116 chmod +x custom-shell
131 cat >custom-shell <<EOF
135 chmod +x custom-shell
147 "${ATF_SH}" -s ./custom-shell tp helper
H A Datf-sh.cpp65 const std::string shell = atf::env::get("ATF_SHELL", ATF_SHELL); in construct_script() local
70 "Atf_Shell='" + shell + "' ; " + in construct_script()
79 construct_argv(const std::string& shell, const int interpreter_argc, in construct_argv() argument
89 argv[0] = shell.c_str(); in construct_argv()
/freebsd-12.1/usr.bin/bmake/tests/shell/path_select/
H A DMakefile.test15 .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.
/freebsd-12.1/usr.sbin/setpmac/
H A Dsetpmac.c62 const char *shell; in main() local
88 if (!(shell = getenv("SHELL"))) in main()
89 shell = _PATH_BSHELL; in main()
90 execlp(shell, shell, "-i", (char *)NULL); in main()
91 err(1, "%s", shell); in main()
/freebsd-12.1/bin/sh/tests/builtins/
H A Dcommand6.0.stdout1 true is a shell builtin
3 fun is a shell function
4 break is a special shell builtin
5 if is a shell keyword
6 { is a shell keyword
H A Dcommand5.0.stdout2 true is a shell builtin
4 fun is a shell function
5 break is a special shell builtin
6 if is a shell keyword
7 { is a shell keyword
/freebsd-12.1/usr.bin/apply/
H A Dapply.c72 char *cmd, *name, *p, *shell, *slashp, *tmpshell; in main() local
124 shell = name = NULL; in main()
126 shell = (tmpshell != NULL) ? strdup(tmpshell) : strdup(_PATH_BSHELL); in main()
127 if (shell == NULL) in main()
129 slashp = strrchr(shell, '/'); in main()
130 name = (slashp != NULL) ? slashp + 1 : shell; in main()
201 if (exec_shell(sbuf_data(cmdbuf), shell, name)) in main()
210 free(shell); in main()
/freebsd-12.1/sys/contrib/zstd/programs/
H A DMakefile25 LIBVER_MAJOR := $(shell echo $(LIBVER_MAJOR_SCRIPT))
26 LIBVER_MINOR := $(shell echo $(LIBVER_MINOR_SCRIPT))
27 LIBVER_PATCH := $(shell echo $(LIBVER_PATCH_SCRIPT))
28 LIBVER := $(shell echo $(LIBVER_SCRIPT))
32 ifeq ($(shell $(CC) -v 2>&1 | grep -c "gcc version "), 1)
61 ifeq ($(shell test $(ZSTD_LEGACY_SUPPORT) -lt 8; echo $$?), 0)
62 ZSTDLEGACY_FILES += $(shell ls $(ZSTDDIR)/legacy/*.c | grep 'v0[$(ZSTD_LEGACY_SUPPORT)-7]')
76 ifneq (,$(filter x86_64%,$(shell $(CC) -dumpmachine)))
248 ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU OpenBSD FreeBSD NetBSD DragonFly SunO…
267 ifneq (,$(filter $(shell uname),OpenBSD FreeBSD NetBSD DragonFly SunOS))
[all …]
/freebsd-12.1/usr.sbin/chroot/
H A Dchroot.c67 const char *shell; in main() local
171 if (!(shell = getenv("SHELL"))) in main()
172 shell = _PATH_BSHELL; in main()
173 execlp(shell, shell, "-i", (char *)NULL); in main()
174 err(1, "%s", shell); in main()
/freebsd-12.1/sys/contrib/zstd/lib/
H A DMakefile15 LIBVER_MAJOR := $(shell echo $(LIBVER_MAJOR_SCRIPT))
16 LIBVER_MINOR := $(shell echo $(LIBVER_MINOR_SCRIPT))
17 LIBVER_PATCH := $(shell echo $(LIBVER_PATCH_SCRIPT))
18 LIBVER := $(shell echo $(LIBVER_SCRIPT))
37 ifeq ($(shell test $(ZSTD_LEGACY_SUPPORT) -lt 8; echo $$?), 0)
38 ZSTD_FILES += $(shell ls legacy/*.c | grep 'v0[$(ZSTD_LEGACY_SUPPORT)-7]')
48 ifeq ($(shell uname), Darwin)
123 ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU OpenBSD FreeBSD NetBSD DragonFly SunO…
137 ifneq (,$(filter $(shell uname),OpenBSD FreeBSD NetBSD DragonFly))
143 ifneq (,$(filter $(shell uname),SunOS))
/freebsd-12.1/release/picobsd/tinyware/oinit/
H A DREADME4 version of init(8) combined with a shell.
11 * provides minimalistic user interface, called "shell()",
14 (*very* primitive, but doesn't require any real shell to run it!),
15 * doesn't require the whole chain of init->getty->login->shell to be run,
27 providing shell() interface. Currently it doesn't require (and is unable to
61 exit exit from shell (oinit will start a new one after some delay)
68 as daemon. This is NOT the same as in normal shell, where the '&' puts a
77 WARNING: this pseudo-shell doesn't do any expansion whatsoever.
94 - shell():
107 shell() on success. The authentication routine would be the same as for
[all …]
/freebsd-12.1/usr.sbin/jexec/
H A Djexec.c66 const char *username, *shell, *term; in main() local
144 if (!(shell = getenv("SHELL"))) in main()
145 shell = _PATH_BSHELL; in main()
146 if (execlp(shell, shell, "-i", NULL) < 0) in main()
147 err(1, "execlp: %s", shell); in main()
/freebsd-12.1/contrib/less/
H A Dlsystem.c47 char *shell; local
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);
/freebsd-12.1/crypto/heimdal/appl/su/
H A Dsu.c337 char *shell; in main() local
384 shell = login_info->pw_shell; in main()
386 shell = su_info->pw_shell; in main()
387 if(shell == NULL || *shell == '\0') in main()
388 shell = _PATH_BSHELL; in main()
472 esetenv("SHELL", shell, 1); in main()
480 p = strrchr(shell, '/'); in main()
484 p = shell; in main()
522 execve(shell, args, environ); in main()
/freebsd-12.1/usr.bin/su/
H A Dsu.c168 const char *p, *user, *shell, *mytty, **nargv; in main() local
177 p = shell = class = cleanenv = NULL; in main()
282 shell = shellbuf; in main()
285 shell = _PATH_BSHELL; in main()
389 shell = pwd->pw_shell; in main()
393 shell = _PATH_BSHELL; in main()
399 p = strrchr(shell, '/'); in main()
403 p = shell; in main()
520 setenv("SHELL", shell, 1); in main()
558 execv(shell, np.b); in main()
[all …]
/freebsd-12.1/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-12.1/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-12.1/usr.bin/bmake/tests/shell/path/
H A DMakefile.test17 @: This is the shell.
23 @: This is the C-shell.
29 @: This is the Korn-shell.
/freebsd-12.1/contrib/binutils/binutils/
H A Dconfigure.tgt2 # autoconf generated configure script. Putting it in a separate shell
6 # This file switches on the shell variable ${targ}, and sets the
7 # following shell variables:
/freebsd-12.1/contrib/sqlite3/
H A DMakefile.in149 am_sqlite3_OBJECTS = sqlite3-shell.$(OBJEXT)
367 sqlite3_SOURCES = shell.c sqlite3.h
514 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sqlite3-shell.Po@am__quote@
539 sqlite3-shell.o: shell.c
540 …FLAGS) -MT sqlite3-shell.o -MD -MP -MF $(DEPDIR)/sqlite3-shell.Tpo -c -o sqlite3-shell.o `test -f …
541 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sqlite3-shell.Tpo $(DEPDIR)/sqlite3-shell.Po
544 …PFLAGS) $(sqlite3_CFLAGS) $(CFLAGS) -c -o sqlite3-shell.o `test -f 'shell.c' || echo '$(srcdir)/'`
546 sqlite3-shell.obj: shell.c
547 …) $(sqlite3_CFLAGS) $(CFLAGS) -MT sqlite3-shell.obj -MD -MP -MF $(DEPDIR)/sqlite3-shell.Tpo -c -o …
548 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sqlite3-shell.Tpo $(DEPDIR)/sqlite3-shell.Po
[all …]
/freebsd-12.1/crypto/openssh/
H A Dsshconnect.c115 char *shell; in ssh_proxy_fdpass_connect() local
118 shell = _PATH_BSHELL; in ssh_proxy_fdpass_connect()
149 argv[0] = shell; in ssh_proxy_fdpass_connect()
193 char *shell; in ssh_proxy_connect() local
195 if ((shell = getenv("SHELL")) == NULL || *shell == '\0') in ssh_proxy_connect()
196 shell = _PATH_BSHELL; in ssh_proxy_connect()
226 argv[0] = shell; in ssh_proxy_connect()
1515 char *shell; in ssh_local_cmd() local
1524 if ((shell = getenv("SHELL")) == NULL || *shell == '\0') in ssh_local_cmd()
1525 shell = _PATH_BSHELL; in ssh_local_cmd()
[all …]

12345678910>>...24