C:\\Users\\YourName\\Documents The shell can jump directly to the path once you know the address.
Translate basic GUI navigation into terminal navigation using the current directory, listing commands, absolute and relative paths, and a few high-value movement shortcuts.
Translate basic GUI navigation into terminal navigation using the current directory, listing commands, absolute and relative paths, and a few high-value movement shortcuts.
Each lesson is meant to move from an idea, to an example, to a safe practice step.
In the GUI, you used folders visually.
In the terminal, you do the same work with paths and commands.
The concept is unchanged:
That is the entire lesson.
C:\\Users\\YourName\\Documents The shell can jump directly to the path once you know the address.
/home/yourname/Documents The shell uses the same idea: path first, then movement from the current directory.
CLI navigation is not a new universe. It is the same map you already saw in the GUI, expressed more directly.
Before moving, confirm your current location.
Get-Location
pwd
If you feel lost, this is the first command to run.
Now inspect the current directory.
Get-ChildItem Get-ChildItem -Force
ls ls -la
The important concept is not the exact flag list yet. It is simply that listing gives you evidence before you move.
Relative paths start from where you are now.
Examples:
Documents..../DownloadsAbsolute paths start from the top of the tree.
Examples:
C:\Windows\System32/var/logIf the path starts from the top (C:\ or /), it is absolute. If it starts from the current location, it is relative.
Use cd to move.
cd Documents cd .. cd C:\Windows cd $env:USERPROFILE
cd Documents cd .. cd /var/log cd ~
Slow is fine here. Correctness matters more than speed.
Type the first few letters and press Tab.
This reduces spelling errors and teaches you the actual folder names faster than raw typing.
If your shell supports it, cd - toggles back to the previous directory. That is one of the simplest useful movement shortcuts.
pushd and popdLater, when you bounce between deep folders, pushd and popd help you leave and return without rebuilding the path in your head.
You do not need them on day one, but it is good to know they exist.
Watch for these:
When something fails, check the current directory first and read the path literally.
Do not jump to unrelated file operations yet.
First do this progression:
lab-nav-01 if basic movement still feels shakylab-nav-02 if paths and symbols are the main hesitationlab-nav-03 if listing output still feels noisyThat is the cleanest practice path from this lesson.
You are ready if you can:
cdThat is the real threshold. Fancy shortcuts can wait.
Do this before moving on. It turns reading into memory and safer action.
Review again after 1, 2, 5 days.
Use the matching lab or keep building skill in practice.