- Does it cover zsh and fish too?
- Core shell features work the same (pipes, redirects, globbing). Zsh and fish have their own extensions — shell-specific syntax isn't covered here, but the portable basics are.
- Is it safe to copy commands from the cheatsheet?
- Commands shown are common and destructive ones (`rm -rf`, `:(){ :|:& };:`) are called out with warnings. Always understand what a command does before running it.
- What about zsh/oh-my-zsh aliases?
- Not covered — those are config layers, not shell features. The cheatsheet focuses on shell primitives that work in any POSIX-compatible shell.
- Which version of Bash does it target?
- Bash 4.x+ features (associative arrays, mapfile). For Bash 3 (default macOS), the cheatsheet notes compatibility. Use brew install bash on Mac for a modern version.