Home
last modified time | relevance | path

Searched refs:exec (Results 1 – 25 of 80) sorted by relevance

1234

/busybox-1.35.0/shell/hush_test/hush-misc/
Dexec.tests5 exec 44>/dev/null
10 exec 55>&44
14 exec 44>&-
19 exec 66</dev/null
24 exec 77<&66
28 exec 66<&-
Dempty_args.tests8 echo Null arg in exec:
9 exec printf ""
Dpiped_input.tests1 exec 2>&1
Dread.tests1 exec <read.tests
Dread.right4 REPLY=exec <read.tests
/busybox-1.35.0/shell/hush_test/hush-redir/
Dredir4.tests2 exec 13>&-
3 exec 12>&-
4 exec 11>&-
5 exec 10>&-
Dredir_errors.tests6 exec >/cant/be/created; echo One:$?
7 exec /bin/true >/cant/be/created; echo One:$?
8 ! exec /bin/true >/cant/be/created; echo Zero:$?
/busybox-1.35.0/shell/ash_test/ash-redir/
Dredir4.tests2 exec 13>&-
3 exec 12>&-
4 exec 11>&-
5 exec 10>&-
/busybox-1.35.0/networking/
Difupdown.c438 static int execute(const char *command, struct interface_defn_t *ifd, execfn *exec) in execute() argument
449 ret = out[0] ? (*exec)(out) : 1; in execute()
463 static int FAST_FUNC loopback_up6(struct interface_defn_t *ifd, execfn *exec) in loopback_up6() argument
467 result = execute("ip addr add ::1 dev %iface%", ifd, exec); in loopback_up6()
468 result += execute("ip link set %iface% up", ifd, exec); in loopback_up6()
471 return execute("ifconfig %iface% add ::1", ifd, exec); in loopback_up6()
475 static int FAST_FUNC loopback_down6(struct interface_defn_t *ifd, execfn *exec) in loopback_down6() argument
478 return execute("ip link set %iface% down", ifd, exec); in loopback_down6()
480 return execute("ifconfig %iface% del ::1", ifd, exec); in loopback_down6()
484 static int FAST_FUNC manual_up_down6(struct interface_defn_t *ifd UNUSED_PARAM, execfn *exec UNUSED… in manual_up_down6()
[all …]
/busybox-1.35.0/shell/ash_test/ash-misc/
Dexec.right1 ./exec.tests: exec: line 2: ./test1.sh: not found
Dempty_args.tests8 echo Null arg in exec:
9 exec printf ""
Dpiped_input.tests1 exec 2>&1
Dread.tests1 exec <read.tests
Dexec.tests2 (exec ./test1.sh)
/busybox-1.35.0/shell/ash_test/ash-psubst/
Dbash_procsub.tests21 # process substitution can be combined with redirection on exec
24 exec 4>&2
26 exec 2> >(tee err)
30 exec 2>&4
/busybox-1.35.0/examples/
Dlinux-2.6.30_proc_self_exe.patch4 diff -urp ../linux-2.6.30.org/fs/exec.c linux-2.6.30/fs/exec.c
5 --- ../linux-2.6.30.org/fs/exec.c 2009-06-10 05:05:27.000000000 +0200
6 +++ linux-2.6.30/fs/exec.c 2009-06-25 00:20:13.000000000 +0200
/busybox-1.35.0/shell/ash_test/ash-signals/
Dsigquit_exec.tests2 # We had a bug where SIGQUIT was masked on exec.
4 exec grep SigIgn: /proc/self/status
/busybox-1.35.0/shell/hush_test/hush-signals/
Dsigquit_exec.tests2 # We had a bug where SIGQUIT was masked on exec.
4 exec grep SigIgn: /proc/self/status
/busybox-1.35.0/shell/ash_test/ash-vars/
Dvar_leaks.tests9 # exec with redirection only
11 a=b exec 1>&1
/busybox-1.35.0/shell/hush_test/hush-vars/
Dvar_leaks.tests9 # exec with redirection only
11 a=b exec 1>&1
Dvar_preserved.tests11 # exec with redirection only
13 a=e exec 1>&1
/busybox-1.35.0/shell/hush_test/hush-comm/
Dcomm.tests14 echo 'exec ./SCRIPT.sh:'
15 (exec ./SCRIPT.sh)
/busybox-1.35.0/shell/ash_test/ash-comm/
Dcomm.tests14 echo 'exec ./SCRIPT.sh:'
15 (exec ./SCRIPT.sh)
/busybox-1.35.0/docs/
Difupdown_design.txt19 static int dhcp_down(struct interface_defn_t *ifd, execfn *exec)
25 return execute(ext_dhcp_clients[i].stopcmd, ifd, exec);
28 return static_down(ifd, exec);
31 "`cat /var/run/udhcpc.%iface%.pid` 2>/dev/null", ifd, exec);
/busybox-1.35.0/shell/hush_test/hush-parsing/
Dargv0.tests2 exec "$THIS_SH" "$0" arg

1234