Cheat Sheet Linux Linux CheatSheet for common tasks 1. File and Directory Management ls -lah # List files with details (including hidden)cd /path/to/dir # Change directorypwd # Show current directorymkdir newdir # Create a directoryrmdir emptydir # Remove empty directoryrm -rf dir_or_file # Remove file or directory forcefullycp file1 file2 # Copy filemv file1 file2 # Move/rename filefind /path -name "*.txt" # Find […] Written by RavikantDk March 13, 2025March 13, 2025 Saving Bookmark this article Bookmarked
Cheat Sheet Git Git Cheatsheet Basic Git Commands Branching & Merging Stashing Changes Undoing Changes Viewing History Remote Repositories Tagging Git Configuration Written by RavikantDk March 11, 2025March 11, 2025 Saving Bookmark this article Bookmarked
Cheat Sheet Docker Docker cheatsheet 🚀 Docker Basics Version & Help docker --version # Check Docker versiondocker info # Show system-wide informationdocker help # Show all commandsdocker <command> --help # Get help for a specific command 📦 Container Management Running Containers docker run hello-world # Run a test containerdocker run -it ubuntu bash # Run a container interactivelydocker run -d […] Written by RavikantDk March 9, 2025March 9, 2025 Saving Bookmark this article Bookmarked