Pipes
# reditect output to file ls > output.sh # redirect input from file sort < file.txt # redirect input and output sort < unsorted.txt > sorted.txt # pipeline cat unsorted.txt | sort