enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Redirection (computing) - Wikipedia

    en.wikipedia.org/wiki/Redirection_(computing)

    In computing, redirection is a form of interprocess communication, and is a function common to most command-line interpreters, including the various Unix shells that can redirect standard streams to user-specified locations. The concept of redirection is quite old, dating back to the earliest operating systems (OS).

  3. tee (command) - Wikipedia

    en.wikipedia.org/wiki/Tee_(command)

    In computing, tee is a command in command-line interpreters (shells) using standard streams which reads standard input and writes it to both standard output and one or more files, effectively duplicating its input. [1] It is primarily used in conjunction with pipes and filters.

  4. Pipeline (Unix) - Wikipedia

    en.wikipedia.org/wiki/Pipeline_(Unix)

    Pipeline (Unix) A pipeline of three program processes run on a text terminal. In Unix-like computer operating systems, a pipeline is a mechanism for inter-process communication using message passing. A pipeline is a set of processes chained together by their standard streams, so that the output text of each process (stdout) is passed directly ...

  5. Process substitution - Wikipedia

    en.wikipedia.org/wiki/Process_substitution

    Process substitution. In computing, process substitution is a form of inter-process communication that allows the input or output of a command to appear as a file. The command is substituted in-line, where a file name would normally occur, by the command shell. This allows programs that normally only accept files to directly read from or write ...

  6. Named pipe - Wikipedia

    en.wikipedia.org/wiki/Named_pipe

    Named pipe. In computing, a named pipe (also known as a FIFO for its behavior) is an extension to the traditional pipe concept on Unix and Unix-like systems, and is one of the methods of inter-process communication (IPC). The concept is also found in OS/2 and Microsoft Windows, although the semantics differ substantially.

  7. dup (system call) - Wikipedia

    en.wikipedia.org/wiki/Dup_(system_call)

    Unix shells use dup2 for input/output redirection. Along with pipe(), it is a tool on which Unix pipes rely. The following example uses pipe() and dup() in order to connect two separate processes (program1 and program2) using Unix pipes:

  8. Standard streams - Wikipedia

    en.wikipedia.org/wiki/Standard_streams

    Another Unix breakthrough was to automatically associate input and output to terminal keyboard and terminal display, respectively, by default [citation needed] — the program (and programmer) did absolutely nothing to establish input and output for a typical input-process-output program (unless it chose a different paradigm).

  9. Pipeline (software) - Wikipedia

    en.wikipedia.org/wiki/Pipeline_(software)

    Pipeline (software) In software engineering, a pipeline consists of a chain of processing elements (processes, threads, coroutines, functions, etc.), arranged so that the output of each element is the input of the next. The concept is analogous to a physical pipeline. Usually some amount of buffering is provided between consecutive elements.