Pipes, filters & plumbimg
One tools output is connected to anothers input:
- Indirectly, via a file created by the first tool
- Directly, via a pipe or pipeline: $ cat /etc/passwd | sort -r | less
examples:
$ cat .profile .shrc | less
$ cat /etc/passwd | head -15 | tail -10