Add piping and wildcard information to tty.md

This commit is contained in:
Donovan Glover 2017-11-19 21:20:43 -05:00
parent 5d380a6d5c
commit e9da533474
No known key found for this signature in database
GPG Key ID: 8FC5F7D90A5D8F4D

View File

@ -14,3 +14,13 @@
- Go to the beginning of the line `Ctrl+A`
- Go to the end of the line `Ctrl+E`
- Remove everything after the cursor `Ctrl+K`
## Piping
- Take the output from `a` and use it as the input for `b`: `a | b`
- Take the output from `a` and write it to the file `b`: `a > b`
- Take the output from `a` and append it to the file `b`: `a >> b`
## Wildcard
- Use `*` anywhere as a wildcard to find all matches