Pipes
From NetBSD Wiki
Pipes are a way to forward data from one program's output into another program as input. They are a vital tool for day-to-day Unix usage.
Example:
$ echo foo | sed "s/foo/bar/" bar
See the main article: File descriptors
Pipes are a way to forward data from one program's output into another program as input. They are a vital tool for day-to-day Unix usage.
Example:
$ echo foo | sed "s/foo/bar/" bar
See the main article: File descriptors