13,420
edits
Changes
→Piping (Using Pipes)
===Piping (Using Pipes)===
Pipes are represented by |
Many commands can be "piped" together, filter commands are especially useful
Each filter processes the initial input based on it's design
Filters must be chained in a specific order, depending on what you wish to accomplish
Example piping use:
ls -al | more
===Multiple Commands Using Semicolon ; / Grouping Commands ( )===