🖥️ COMMANDS CENTRAL
Linux Terminal Commands
$ ls - List directory contents
$ cd /path - Change directory
$ pwd - Print working directory
$ mkdir folder - Create new directory
$ rm file - Remove file
$ cp source destination - Copy files
$ mv source destination - Move/rename files
Windows Command Prompt
C:\> dir - List directory contents
C:\> cd path - Change directory
C:\> mkdir folder - Create folder
C:\> del file - Delete file
C:\> copy source destination - Copy files
C:\> move source destination - Move files
Network Diagnostic Commands
$ ping google.com - Test network connectivity
$ traceroute 8.8.8.8 - Trace network path
$ netstat -tuln - List network connections
$ ifconfig - Display network interfaces
$ nmap 192.168.1.1 - Network scanning
Programming Command References
$ git clone [url] - Clone repository
$ git commit -m "message" - Commit changes
$ npm install - Install Node packages
$ python -m venv env - Create virtual environment
$ docker build . - Build container