HomeSort by: relevance | last modified time | path
    Searched defs:Shell (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.bin/tip/
cmds.c 559 * Escape to local shell
563 shell(char dummy __unused) function in typeref:typename:void
583 if ((cp = strrchr(value(SHELL), '/')) == NULL)
584 cp = value(SHELL);
587 (void)execl(value(SHELL), cp, NULL);
684 if ((cp = strrchr(value(SHELL), '/')) == NULL)
685 cp = value(SHELL);
688 (void)execl(value(SHELL), cp, "-c", s, NULL);
847 * expand a file name if it includes shell meta characters
858 const char *Shell;
    [all...]
  /src/usr.bin/make/
job.c 88 * Job_ParseShell Given a special dependency line with target '.SHELL',
89 * define the shell that is used for the creation
169 * A Job manages the shell commands that are run to create a single target.
170 * Each job is run in a separate subprocess by a shell. Several jobs can run
173 * The shell commands for the target are written to a temporary file,
174 * then the shell is run with the temporary file as stdin, and the output
175 * of that shell is captured via a pipe.
182 /* The process ID of the shell running the commands */
189 * If one of the shell commands is "...", all following commands are
195 /* This is where the shell commands go. *
477 static Shell *shell = &shells[DEFSHELL_INDEX]; variable in typeref:typename:Shell *
    [all...]

Completed in 124 milliseconds