Home
last modified time | relevance | path

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

12345678910>>...22

/freebsd/contrib/netbsd-tests/ipf/input/
H A Dni191 # 192.168.113.3.1009 > 10.1.1.4.shell: SYN win 32768 <mss 1460,nop,wscale 0,sackOK,nop,nop,nop,nop,…
8 # 10.1.1.4.shell > 10.1.1.1.1009: SYN win 5840 <mss 1460,nop,nop,sackOK,nop,wscale 2>
15 # 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
[all …]
H A Dni201 # 192.168.113.3.1009 > 10.1.1.4.shell: SYN win 32768 <mss 1460,nop,wscale 0,sackOK,nop,nop,nop,nop,…
8 # 192.168.113.4.shell > 192.168.113.3.1009: SYN win 5840 <mss 1460,nop,nop,sackOK,nop,wscale 2>
15 # 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
81 # 192.168.113.4.shell > 192.168.113.3.1009 PUSH+ACK
[all …]
/freebsd/usr.bin/newgrp/
H A Dnewgrp.c264 const char *shell; in loginshell()
267 shell = pwd->pw_shell; in loginshell()
268 if (*shell == '\0') in loginshell()
269 shell = _PATH_BSHELL; in loginshell()
288 setenv("SHELL", shell, 1); in loginshell()
295 if (asprintf(args, "-%s", shell) < 0) in loginshell()
299 execv(shell, args);
300 err(1, "%s", shell); in doshell()
306 const char *shell; in doshell()
308 shell in doshell()
260 const char *shell; loginshell() local
302 const char *shell; doshell() local
[all...]
/freebsd/sys/contrib/zstd/lib/
H A Dlibzstd.mk57 LIBVER_MAJOR := $(shell echo $(LIBVER_MAJOR_SCRIPT))
58 LIBVER_MINOR := $(shell echo $(LIBVER_MINOR_SCRIPT))
59 LIBVER_PATCH := $(shell echo $(LIBVER_PATCH_SCRIPT))
60 LIBVER := $(shell echo $(LIBVER_SCRIPT))
61 CCVER := $(shell $(CC) --version)
68 HAVE_CC_OZ ?= $(shell echo "" | $(CC) -Oz -x c -c - -o /dev/null 2> /dev/null && echo 1 || echo 0)
104 ifeq ($(shell echo "int main(int argc, char* argv[]) { (void)argc; (void)argv; return 0; }" | $(CC)…
107 ifeq ($(shell echo | $(CC) $(FLAGS) -Wa,--noexecstack -x assembler -Werror -c - -o $(VOID) 2>$(VOID…
110 else ifeq ($(shell echo | $(CC) $(FLAGS) -Qunused-arguments -Wa,--noexecstack -x assembler -Werror …
117 HAVE_COLORNEVER = $(shell echo a | grep --color=never a > /dev/null 2> /dev/null && echo 1 || echo …
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Dcommands6 #0 string/w : shell archive or script for antique kernel text
7 0 string/fwt #!\ /bin/sh POSIX shell script text executable
9 0 string/fwb #!\ /bin/sh POSIX shell script executable (binary data)
14 0 string/fwt #!\ /bin/csh C shell script text executable
17 # korn shell magic, sent by George Wu, gwu@clyde.att.com
18 0 string/fwt #!\ /bin/ksh Korn shell script text executable
20 0 string/fwb #!\ /bin/ksh Korn shell script executable (binary data)
23 0 string/fwt #!\ /bin/tcsh Tenex C shell script text executable
25 0 string/fwt #!\ /usr/bin/tcsh Tenex C shell script text executable
27 0 string/fwt #!\ /usr/local/tcsh Tenex C shell script text executable
[all …]
/freebsd/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
/freebsd/usr.bin/bmake/tests/shell/path_select/
H A DMakefile.test14 .SHELL: name=sh path=${.CURDIR}/shell
16 @: This is the shell.
20 .SHELL: name=csh path=${.CURDIR}/shell
22 @: This is the C-shell.
26 .SHELL: name=ksh path=${.CURDIR}/shell
28 @: This is the Korn-shell.
/freebsd/usr.sbin/setpmac/
H A Dsetpmac.c60 const char *shell; in main() local
86 if (!(shell = getenv("SHELL"))) in main()
87 shell = _PATH_BSHELL; in main()
88 execlp(shell, shell, "-i", (char *)NULL); in main()
89 err(1, "%s", shell); in main()
/freebsd/bin/sh/tests/parser/
H A Dps1-expand5.02 output=$(PS1='shell:$0:' ENV=/dev/null ${SH} +m -i </dev/null 2>&1)
3 # $0 should contain the shell name/path
5 *shell:\$0:*) echo "Positional parameter not expanded, got literal \$0"; exit 1 ;;
6 *shell:*sh*:*) exit 0 ;;
7 *) echo "Expected shell name after 'shell:' in output"; exit 1 ;;
/freebsd/contrib/bmake/
H A Djob.c506 static Shell *shell = &shells[DEFSHELL_INDEX]; variable
897 if (shell->hasEchoCtl) in ShellWriter_EchoOff()
898 ShellWriter_WriteLine(wr, shell->echoOff); in ShellWriter_EchoOff()
904 ShellWriter_WriteFmt(wr, shell->echoTmpl, escCmd); in ShellWriter_EchoCmd()
910 if (shell->hasEchoCtl) in ShellWriter_EchoOn()
911 ShellWriter_WriteLine(wr, shell->echoOn); in ShellWriter_EchoOn()
928 ShellWriter_WriteLine(wr, shell->errOff); in ShellWriter_ErrOff()
938 ShellWriter_WriteLine(wr, shell->errOn); in ShellWriter_ErrOn()
965 *inout_cmdTemplate = shell->runIgnTmpl; in JobWriteSpecialsEchoCtl()
981 else if (shell->hasErrCtl) in JobWriteSpecials()
[all …]
/freebsd/contrib/sqlite3/
H A Dauto.def12 proj-define-for-opt static-shell ENABLE_STATIC_SHELL \
14 proj-define-for-opt static-cli-shell STATIC_CLI_SHELL "Statically link CLI shell?"
15 if {![opt-bool static-shell] && [opt-bool static-cli-shell]} {
18 if {![opt-bool shared] && ![opt-bool static-shell]} {
21 NOTICE: ignoring --disable-shared because --disable-static-shell
H A DMakefile.in226 sqlite3-shell-link-flags.1 = $(TOP)/sqlite3.c $(LDFLAGS.libsqlite3)
227 sqlite3-shell-link-flags.0 = -L. -lsqlite3 $(LDFLAGS.zlib) $(LDFLAGS.math)
228 sqlite3-shell-deps.1 = $(TOP)/sqlite3.c
229 sqlite3-shell-deps.0 = $(libsqlite3.DLL)
240 sqlite3-shell-static.flags.1 = -static
241 sqlite3-shell-static.flags.0 =
242 sqlite3$(T.exe): $(TOP)/shell.c $(sqlite3-shell-deps.$(ENABLE_STATIC_SHELL))
244 $(TOP)/shell.c $(sqlite3-shell-link-flags.$(ENABLE_STATIC_SHELL)) \
245 $(sqlite3-shell-static.flags.$(STATIC_CLI_SHELL)) \
254 install-shell-0: sqlite3$(T.exe) $(install-dir.bin)
[all …]
/freebsd/contrib/bmake/unit-tests/
H A Dcomment.exp1 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.
H A Dvar-op-sunsh.mk29 VAR:shell= echo colon-shell
33 .if ${${:UVAR\:shell}} != "echo colon-shell"
65 VAR.${:U echo\:shell}= ok-shell
66 .if ${VAR.${:U echo\:shell}} != "ok-shell"
H A DMakefile163 TESTS+= deptgt-shell
322 TESTS+= shell-csh
323 TESTS+= shell-custom
325 TESTS+= shell-ksh
327 TESTS+= shell-sh
362 TESTS+= var-op-shell
371 TESTS+= varmod-assign-shell
374 TESTS+= varmod-exclam-shell
402 TESTS+= varmod-shell
405 TESTS+= varmod-sun-shell
[all …]
/freebsd/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/usr.bin/apply/
H A Dapply.c63 char *cmd, *name, *p, *shell, *slashp, *tmpshell; in main() local
115 shell = name = NULL; in main()
117 shell = (tmpshell != NULL) ? strdup(tmpshell) : strdup(_PATH_BSHELL); in main()
118 if (shell == NULL) in main()
120 slashp = strrchr(shell, '/'); in main()
121 name = (slashp != NULL) ? slashp + 1 : shell; in main()
193 if (exec_shell(sbuf_data(cmdbuf), shell, name)) in main()
202 free(shell); in main()
/freebsd/crypto/libecc/
H A Dcommon.mk4 MINGW := $(shell $(CROSS_COMPILE)$(CC) -dumpmachine 2>&1 | grep -v mingw)
6 APPLE := $(shell $(CROSS_COMPILE)$(CC) -dumpmachine 2>&1 | grep -v apple)
17 SYS_ROOT_PATH := $(shell xcode-select --print-path)
37 CLANG := $(shell $(CROSS_COMPILE)$(CC) -v 2>&1 | grep clang)
41 CLANG_VERSION := $(shell $(CROSS_COMPILE)$(CC) -dumpversion)
43 CLANG_VERSION := $(shell echo $(CLANG_VERSION) | cut -f1-2 -d. | sed -e 's/\./*100+/g')
45 CLANG_VERSION := $(shell echo $$(($(CLANG_VERSION))))
47 CLANG_VERSION_GTE_12 := $(shell [ $(CLANG_VERSION) -ge 1200 ] && echo true)
48 CLANG_VERSION_GTE_13 := $(shell [ $(CLANG_VERSION) -ge 1300 ] && echo true)
49 CLANG_VERSION_GTE_16 := $(shell [ $(CLANG_VERSION) -ge 1600 ] && echo true)
[all …]
/freebsd/contrib/wpa/hs20/client/
H A DMakefile11 TEST_WK := $(shell pkg-config --silence-errors --cflags webkitgtk-3.0)
14 GTKCFLAGS := $(shell pkg-config --cflags gtk+-3.0 webkit2gtk-4.0)
15 GTKLIBS := $(shell pkg-config --libs gtk+-3.0 webkit2gtk-4.0)
18 GTKCFLAGS := $(shell pkg-config --cflags gtk+-3.0 webkitgtk-3.0)
19 GTKLIBS := $(shell pkg-config --libs gtk+-3.0 webkitgtk-3.0)
60 CFLAGS += $(shell xml2-config --cflags)
61 LIBS += $(shell xml2-config --libs)
/freebsd/usr.sbin/chroot/
H A Dchroot.c96 const char *group, *p, *shell, *user; in main() local
194 if (!(shell = getenv("SHELL"))) in main()
195 shell = _PATH_BSHELL; in main()
196 execlp(shell, shell, "-i", (char *)NULL); in main()
197 err(1, "%s", shell); in main()
/freebsd/contrib/libcbor/examples/bazel/
H A DREADME.md9 ```shell
17 ```shell
25 ```shell
31 ```shell
/freebsd/usr.sbin/jexec/
H A Djexec.c66 const char *username, *shell, *term; in main() local
169 if (!(shell = getenv("SHELL"))) in main()
170 shell = _PATH_BSHELL; in main()
171 if (execlp(shell, shell, "-i", NULL) < 0) in main()
172 err(1, "execlp: %s", shell); in main()
/freebsd/usr.bin/bmake/unit-tests/
H A DMakefile166 TESTS+= deptgt-shell
325 TESTS+= shell-csh
326 TESTS+= shell-custom
328 TESTS+= shell-ksh
330 TESTS+= shell-sh
365 TESTS+= var-op-shell
374 TESTS+= varmod-assign-shell
377 TESTS+= varmod-exclam-shell
405 TESTS+= varmod-shell
408 TESTS+= varmod-sun-shell
[all …]
/freebsd/contrib/less/
H A Dlsystem.c48 constant char *shell; in lsystem() local
129 if ((shell = lgetenv("SHELL")) != NULL && *shell != '\0') in lsystem()
132 p = save(shell); in lsystem()
138 size_t len = strlen(shell) + strlen(esccmd) + 5; in lsystem()
140 SNPRINTF3(p, len, "%s %s %s", shell, shell_coption(), esccmd); in lsystem()

12345678910>>...22