Revision 2: Navigation & File Reading
Combine mkdir, cd, and type to set up and navigate workspaces efficiently.
Start Interactive LessonRevision 2: Navigation & File Reading
Ready to test your navigation skills? This revision challenges you to combine multiple commands into efficient workflows. You'll create folders, navigate into them, and read file contents — the core of productive terminal work.
Challenge 1: Create and Navigate
Use command chaining to create a new folder and move into it in a single terminal command. This is a crucial productivity skill — combining operations reduces repetition and keeps your workflow smooth.
Notice how both commands execute in sequence. If mkdir fails, cd won't run. This prevents errors and ensures your workspace is properly set up before you navigate into it.
Challenge 2: Read and Review
Now that you're in your workspace, use type to read a checklist file and verify the next steps of your workflow.
The type command displays file contents directly in your terminal. This is essential for reviewing configurations, logs, and task lists without opening a separate editor.
Knowledge Check
1 / 3What does the && operator do in Windows Command Prompt?
References
These Microsoft Learn and Windows documentation links provide authoritative details for the commands used in this article.