📁 File Management
ls / dir- List filescd- Change directorycp / copy- Copy filesmv / move- Move filesrm / del- Delete files
Essential command line reference for developers
This guide covers 15 essential CLI commands every developer should know. No complex variations, just the basics to get you productive.
ls / dir - List filescd - Change directorycp / copy - Copy filesmv / move - Move filesrm / del - Delete filesipconfig / ifconfig - Network configurationping - Test connectivityscp - Secure file transfertar - Archive fileszip / unzip - Compress filespython3 -m http.server - Quick web servergit - Version controlgrep - Search textcurl - Transfer dataInstantly serve files from current directory:
python3 -m http.server 8000
Then open: http://localhost:8000
ipconfig
ifconfig
tar -czf archive.tar.gz folder/
Extract:
tar -xzf archive.tar.gz
Copy to remote server:
scp file.txt user@server:/path/to/destination
Copy from remote server:
scp user@server:/path/to/file.txt .
Quick server command: python3 -m http.server
Server port: 8000
Bytes in response:
Last updated:
"The shell is both a command language and a programming language."
--help or man to learn about any command