The shell (usually Bash) is how you drive Linux — far faster and more scriptable than a GUI once you know it.
Essential commands
- Navigate:
pwd,ls -l,cd. - Files:
cp,mv,rm,mkdir,touch. - View/search:
cat,less,grep,find. - Pipes & redirection:
command1 | command2,>and>>— compose small tools into powerful one-liners (e.g.ps aux | grep nginx).
The pipe philosophy — small tools doing one job well, combined — is the heart of Linux and feeds directly into Bash scripting and processes.
