For lazy people who don't know anything
Master the terminal with just 10 commands
Start typing, hit Tab, let the computer finish. Double-tap Tab to see options.
No retyping! Press ↑ to find commands you used before. Ctrl+R to search.
Drag any file into the terminal and it types the full path automatically. No typing long paths!
Found a command online? Copy it. Paste it. It works. Learn what it does later (or don't).
| Command | What It Does | Example |
|---|---|---|
mkdir name |
Make directory — Create a folder | mkdir projects |
touch file |
Create an empty file | touch notes.txt |
cp file newfile |
Copy a file | cp notes.txt backup.txt |
cp -r folder newfolder |
Copy a folder and contents | cp -r projects projects-backup |
mv file folder/ |
Move file to a folder | mv notes.txt Documents/ |
mv old new |
Rename a file or folder | mv notes.txt todo.txt |
rm file |
⚠️ Remove file (no undo!) | rm notes.txt |
rm -r folder |
⚠️ Remove folder + contents | rm -r old-project |
rm deletes immediately — no Trash/Recycle Bin recovery!
| Command | What It Does | Example |
|---|---|---|
cat file |
Display entire file contents | cat readme.txt |
less file |
View file (scroll with arrows, quit with 'q') | less log.txt |
head file |
Show first 10 lines | head data.csv |
tail file |
Show last 10 lines | tail log.txt |
tail -f file |
Watch file in real-time (great for logs) | tail -f server.log |
open file |
Open file with default application | open report.pdf |
| Command | What It Does | Example |
|---|---|---|
grep "word" file |
Search for text in a file | grep "error" log.txt |
grep -r "word" folder/ |
Search in all files in a folder | grep -r "todo" projects/ |
find . -name "*.pdf" |
Find all PDF files | Finds every .pdf file |
find . -name "*report*" |
Find files with "report" in name | Finds any file with "report" |
find . -type d |
Find all directories | Lists all folders only |
The system that runs AI assistants
| Command | What It Does |
|---|---|
openclaw status |
Show channel health and recent sessions |
openclaw health |
Fetch health from the running gateway |
openclaw logs |
Tail gateway file logs |
openclaw doctor |
Health checks + quick fixes |
openclaw skills |
List available skills |
openclaw agents |
List and manage isolated agents |
openclaw sessions |
List stored conversation sessions |
| Command | What It Does |
|---|---|
openclaw gateway status |
Show gateway service status + probe |
openclaw gateway start |
Start the Gateway service |
openclaw gateway stop |
Stop the Gateway service |
openclaw gateway restart |
Restart the Gateway service |
openclaw gateway run |
Run gateway in foreground (for debugging) |
openclaw gateway health |
Fetch Gateway health |
openclaw gateway discover |
Find local gateways on your network |
Run openclaw tui for a visual interface. Navigate with arrow keys, press Enter to select, 'q' to quit. No typing required!
AI coding assistant in your terminal
| Command | What It Does |
|---|---|
claude |
Start Claude Code in current directory |
claude /help |
Show all available commands |
claude /compact |
Compress conversation history |
claude /clear |
Clear the conversation |
claude /exit |
Exit Claude Code |
/help — Show all commands/clear — Fresh start/compact — Save tokens/exit — GoodbyeJust type what you want:
When you get stuck, just use Claude. Copy the error message → Paste to Claude. Take a screenshot → Drop it in Claude. Say "I don't know what this means" or "Fix this for me." The beauty: You don't need to understand the problem. Claude does the troubleshooting for you.
"The terminal is for lazy people. Let the computer do the work."