/busybox-1.35.0/shell/ash_test/ash-quoting/ |
D | mode_x.right | 4 + this=command 5 + 'this=command' 6 ./mode_x.tests: line 10: this=command: not found
|
D | mode_x.tests | 8 this=command 10 "this=command"
|
/busybox-1.35.0/init/ |
D | init.c | 205 char command[1]; member 429 static void init_exec(const char *command) in init_exec() argument 432 unsigned command_size = strlen(command) + 8; in init_exec() 439 dash = (command[0] == '-' /* maybe? && command[1] == '/' */); in init_exec() 440 command += dash; in init_exec() 443 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) { in init_exec() 444 sprintf(buf, "exec %s", command); /* excluding "-" */ in init_exec() 450 command = LIBBB_DEFAULT_LOGIN_SHELL + 1; in init_exec() 455 next = strcpy(buf, command - dash); /* command including "-" */ in init_exec() 456 command = next + dash; in init_exec() [all …]
|
/busybox-1.35.0/shell/ash_test/ash-vars/ |
D | readonly1.tests | 5 # "command BLTIN" disables "special-ness", should not abort: 6 command eval bla=123 2>/dev/null
|
D | var_serial.right | 2 Assignments and a command: c=a
|
/busybox-1.35.0/libbb/ |
D | lineedit.c | 823 static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type) in complete_cmd_dir_file() argument 836 basecmd = strrchr(command, '/'); in complete_cmd_dir_file() 840 basecmd = command; in complete_cmd_dir_file() 845 dirbuf = xstrndup(command, basecmd - command); in complete_cmd_dir_file() 1344 char *command = match_buf + MAX_LINELEN; in input_tab() local 1345 int len = save_string(command, MAX_LINELEN); in input_tab() 1351 strcpy(match_buf, &command[cursor_mb]); in input_tab() 1353 strcpy(&command[cursor_mb], chosen_match + match_pfx_len); in input_tab() 1354 len = load_string(command); in input_tab() 1356 stpcpy(stpcpy(&command[cursor_mb], chosen_match + match_pfx_len), match_buf); in input_tab() [all …]
|
/busybox-1.35.0/networking/ |
D | ifupdown.c | 162 typedef int execfn(char *command); 328 static char *parse(const char *command, struct interface_defn_t *ifd) in parse() argument 335 while (*command) { in parse() 336 switch (*command) { in parse() 338 addstr(&result, command, 1); in parse() 339 command++; in parse() 342 if (command[1]) in parse() 343 command++; in parse() 344 addstr(&result, command, 1); in parse() 345 command++; in parse() [all …]
|
/busybox-1.35.0/shell/ash_test/ash-misc/ |
D | command.tests | 1 command -p -V recho
|
D | command2.tests | 4 command . ./test1.sh
|
D | exitcode_trap1.tests | 1 # "exit" in trap should not use last command's exitcode,
|
D | exitcode_trap2.tests | 1 # "exit" in trap should not use last command's exitcode,
|
D | exitcode_trap3.tests | 1 # "return" in trap should not use last command's exitcode,
|
D | exitcode_trap6.tests | 1 # "exit" in trap should not use last command's exitcode,
|
/busybox-1.35.0/shell/hush_test/hush-misc/ |
D | syntax_err_negate.right | 2 hush: syntax error: ! ! command
|
D | command2.tests | 4 command . ./test1.sh
|
D | exitcode_trap2.tests | 1 # "exit" in trap should not use last command's exitcode,
|
D | exitcode_trap3.tests | 1 # "return" in trap should not use last command's exitcode,
|
D | exitcode_trap6.tests | 1 # "exit" in trap should not use last command's exitcode,
|
/busybox-1.35.0/selinux/ |
D | runcon.c | 62 char *command, int compute_trans) in runcon_compute_new_context() argument 73 if (getfilecon(command, &file_context) < 0) in runcon_compute_new_context() 75 command); in runcon_compute_new_context()
|
/busybox-1.35.0/testsuite/which/ |
D | which-uses-default-path | 1 BUSYBOX=$(command -v busybox)
|
/busybox-1.35.0/shell/ |
D | hush.c | 644 struct command { struct 711 struct command *cmds; /* array of commands in pipe */ 733 struct command *command; member 793 struct command *parent_cmd; 3578 struct command *command; in free_pipe() local 3581 command = &pi->cmds[i]; in free_pipe() 3583 if (command->argv) { in free_pipe() 3587 for (a = 0, p = command->argv; *p; a++, p++) { in free_pipe() 3591 free_strings(command->argv); in free_pipe() 3595 if (command->group) { in free_pipe() [all …]
|
D | ash_remove_unnecessary_code_in_backquote_expansion.patch | 42 expanding a builtin command in backquotes. 64 - * Execute a command inside back quotes. If it's a builtin command, we 66 - * we fork off a subprocess and get the output of the command via a pipe. 68 + * Execute a command inside back quotes. We fork off a subprocess and 69 + * get the output of the command via a pipe. Should be called with 76 struct job *jp; /* job structure for command */
|
/busybox-1.35.0/shell/hush_test/hush-vars/ |
D | var_serial.right | 2 Assignments and a command: c=a
|
/busybox-1.35.0/docs/ |
D | busybox_header.pod | 38 command line like 'make CONFIG_PREFIX=/tmp/foo install'). If you enabled 51 You can also invoke BusyBox by issuing a command as an argument on the 52 command line. For example, entering 58 Of course, adding '/bin/busybox' into every command would be painful. So most 66 will cause BusyBox to behave as 'ls' (if the 'ls' command has been compiled 69 the 'make install' command.
|
/busybox-1.35.0/util-linux/ |
D | mdev.c | 645 char *command; in make_device() local 741 command = NULL; in make_device() 742 IF_FEATURE_MDEV_EXEC(command = rule->r_cmd;) in make_device() 743 if (command) { in make_device() 747 if ((command[0] == '@' && operation == OP_add) in make_device() 748 || (command[0] == '$' && operation == OP_remove) in make_device() 749 || (command[0] == '*') in make_device() 751 command++; in make_device() 753 command = NULL; in make_device() 756 dbg3("command:'%s'", command); in make_device() [all …]
|