An Interactive Guide to Folder Navigation
Visually learn how to move, look, and organize files with this command-line playground.
Before We Begin: What is a Terminal?
A terminal (also called "command line" or "console") is a text-based interface where you type commands instead of clicking buttons. Think of it as having a conversation with your computer using precise instructions.
How to Open Your Terminal
- Windows: Press
Win + R, typecmdorpowershell - Mac: Press
Cmd + Space, typeTerminal - Linux: Press
Ctrl + Alt + T
Welcome to the Command Line
A Command-Line Interface (CLI) lets you control your computer with text commands instead of clicks. Try our safe playground: a "Digital Hospital Records" system. Commands you select will update the file explorer above.
Note: Claude Code uses these same commands automatically.
💡 Swipe horizontally to see full tree
👆 Tap folders/files above to explore, then try commands below!
Your Command Toolkit
Click on any command to see it run in the interactive explorer above. The file system will update visually, and the terminal will show the output. Scroll up and down as needed to experience the full effect.
Key Concepts Cheat Sheet
ls(list): See what's inside a folder.cd(change directory): Move between folders.pwd(print working directory): Ask, "Where am I?"- Paths are Addresses: A Relative Path (
./,../) gives directions from where you are now. An Absolute Path (/) gives the full address from the very beginning. - Wildcards (
*): A placeholder.*.txtmeans "any file that ends with .txt". - Flags (
-l,-a): Options that change how a command works, like showing more details or revealing hidden items.