mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 09:24:17 +01:00
Add piping and wildcard information to tty.md
This commit is contained in:
parent
5d380a6d5c
commit
e9da533474
10
help/tty.md
10
help/tty.md
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user