StartBeginner25 min read
1. Navigation & files
Linux Shell Daily · 12 pages source format
pwd, ls, cd, mkdir, touch, mv, cp, rm (carefully).
What you'll learn
- Paths
- Listing
- Safety
Key idea
The shell is a text UI to the filesystem. Relative vs absolute paths matter.
Quick check
pwd shows…
Do this now
Write 3 notes on: Shell navigation.
Clear?
Practice
Create a practice folder, move files, list with ls -la.
pwd
ls -la
mkdir practice && cd practiceDo this now
Commit one file practicing Shell navigation.
Clear?