Skip to content

Instantly share code, notes, and snippets.

@romach
Created April 11, 2017 20:51
Show Gist options
  • Save romach/382bc4452d9ce2eb3cffbf97b22ea292 to your computer and use it in GitHub Desktop.
Save romach/382bc4452d9ce2eb3cffbf97b22ea292 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment