Bash Basics
Use these to get oriented before you run Fabric commands.
pwd shows your current directory.
ls lists files. Try ls -l for details.
cd .. goes up one level. cd ~ returns home.
less FILE opens a scrollable viewer. Press q to exit.
nano FILE opens a simple editor. Use Ctrl+O to save and Ctrl+X to quit.
Zellij Basics
The terminal runs inside zellij. Available keys are shown in the status bar at the bottom.
Alt+n opens a new pane. On Mac use Ctrl+p then n.
Alt+Arrow moves between panes (crosses to the next tab at the edge). On Mac use Ctrl+p then arrow keys.
Ctrl+p enters pane mode: r splits right, d splits down, x closes the pane.
Ctrl+t enters tab mode: n creates a new tab, Left/Right switches tabs.
Ctrl+s enters scroll mode. Use arrows or Page Up/Down, then press Esc to return.
- Type
exit to close the current shell pane when you are done with it.