20 lines
617 B
Markdown
20 lines
617 B
Markdown
# Hints for Unix
|
|
|
|
## Single commands
|
|
|
|
1. `man find` should tell you everything you need
|
|
2. `touch` is an interesting command :)
|
|
3. checkout `man ls` for more info
|
|
4. start with `man whoami`
|
|
5. `time` and `date` are very weird. `time` doesn't display the current time, but rather a command's time. `date` on the other hand.
|
|
|
|
## Piping commands together
|
|
|
|
1. You may Google "Shell Redirection"
|
|
2. Again, it's shell redirections!
|
|
3. If lost, open `vimtutor`
|
|
4. A cat is not just a cute pet.
|
|
5. **G**et that **R**egular **E**xpression and **P**rint
|
|
1. Manual pages are friendly!
|
|
6. You may Google "unix standard input"
|