Created
April 11, 2017 20:51
-
-
Save romach/382bc4452d9ce2eb3cffbf97b22ea292 to your computer and use it in GitHub Desktop.
Pipes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment