This tag is appropriate for questions related to taking output from one operation and using it as input to a subsequent operation.
Questions concerning the chaining of command line calls where the output of one call is used as the input for another call should use this tag.
An example of piping
would this Linux command:
grep -v bash /etc/passwd | grep -v nologin
The output from the first grep
is piped
into the second grep
as input.
You can read more information about piping at Wikipedia.