Searched refs:exec (Results 1 – 25 of 80) sorted by relevance
1234
/busybox-1.35.0/shell/hush_test/hush-misc/ |
D | exec.tests | 5 exec 44>/dev/null 10 exec 55>&44 14 exec 44>&- 19 exec 66</dev/null 24 exec 77<&66 28 exec 66<&-
|
D | empty_args.tests | 8 echo Null arg in exec: 9 exec printf ""
|
D | piped_input.tests | 1 exec 2>&1
|
D | read.tests | 1 exec <read.tests
|
D | read.right | 4 REPLY=exec <read.tests
|
/busybox-1.35.0/shell/hush_test/hush-redir/ |
D | redir4.tests | 2 exec 13>&- 3 exec 12>&- 4 exec 11>&- 5 exec 10>&-
|
D | redir_errors.tests | 6 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/ |
D | redir4.tests | 2 exec 13>&- 3 exec 12>&- 4 exec 11>&- 5 exec 10>&-
|
/busybox-1.35.0/networking/ |
D | ifupdown.c | 438 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/ |
D | exec.right | 1 ./exec.tests: exec: line 2: ./test1.sh: not found
|
D | empty_args.tests | 8 echo Null arg in exec: 9 exec printf ""
|
D | piped_input.tests | 1 exec 2>&1
|
D | read.tests | 1 exec <read.tests
|
D | exec.tests | 2 (exec ./test1.sh)
|
/busybox-1.35.0/shell/ash_test/ash-psubst/ |
D | bash_procsub.tests | 21 # 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/ |
D | linux-2.6.30_proc_self_exe.patch | 4 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/ |
D | sigquit_exec.tests | 2 # 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/ |
D | sigquit_exec.tests | 2 # 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/ |
D | var_leaks.tests | 9 # exec with redirection only 11 a=b exec 1>&1
|
/busybox-1.35.0/shell/hush_test/hush-vars/ |
D | var_leaks.tests | 9 # exec with redirection only 11 a=b exec 1>&1
|
D | var_preserved.tests | 11 # exec with redirection only 13 a=e exec 1>&1
|
/busybox-1.35.0/shell/hush_test/hush-comm/ |
D | comm.tests | 14 echo 'exec ./SCRIPT.sh:' 15 (exec ./SCRIPT.sh)
|
/busybox-1.35.0/shell/ash_test/ash-comm/ |
D | comm.tests | 14 echo 'exec ./SCRIPT.sh:' 15 (exec ./SCRIPT.sh)
|
/busybox-1.35.0/docs/ |
D | ifupdown_design.txt | 19 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/ |
D | argv0.tests | 2 exec "$THIS_SH" "$0" arg
|
1234