Site search

Search results: «MacBookTips»

Found matches: 1

🍎 ESSENTIAL MacOS (MacBook) TERMINAL COMMANDS

Boost your productivity and master the macOS Terminal with these key commands — from file management and system checks to networking, permissions, and PowerShell utilities 💻⚡

📁 FILE & DIRECTORY COMMANDS
Copy code
Bash
ls # List files
ls -la # Detailed + hidden files
pwd # Current directory
cd dir # Change directory
cd .. # Go back
mkdir dir # Create folder
rm file # Delete file
rm -r dir # Delete folder
cp a b # Copy file
mv a b # Move / rename

🖥️ SYSTEM CHECK COMMANDS
Copy code...