Redirection is (mostly) for files (you redirect streams to/from files).
Piping is for processes: you pipe (redirect) streams from one process to another.
Essentially what you really do is "connect" one standard stream (usually stdout
) of one process to standard stream of another process (usually stdin
) via pipe.
Pipes have also the synchronization "side effect" : they block one process (on reading) when the other has nothing to write (yet) or when reading process cannot read fast enough (when the pipe's buffer is full).
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…