Know your Bash
Bash introduction
- The best Bash cheatsheet, and another nice one
- A decent Bash tutorial, with online code environment
- The advanced bash script guide
Bash tools
- spell check your scripts
- Beautiful explanations on shell commands
- Bashtop, the best resource monitor
Bash tricks
- To copy the result of a command directly in your clipboard:
cmd | xclip
(and on Mac, it iscmd | pbcopy
) - disown, if you forgot to use tmux/screen or nohup.
- a nice cheatsheet for tmux and screen