Categories
Laptop OsX

How To Take A ScreenShot on Mac

You can capture a Screenshot of your entire screen or just a selected portion of it. The screenshot is automatically saved to your desktop. How to take a screenshot of your entire screen Press Shift+Command (⌘)+3. The screenshot will be saved as a .png file on your desktop How to take a screenshot of a […]

Categories
Open Source Solutions

Git – Undo Uncommitted Changes to a Specific File

Here are the steps remove uncommited changes to a file in Git: Firstly check the list of uncommited changes in your system by using the command “git status“ To remove the changes to the file use the command: git checkout <filepath>  Make sure you use the full path as seen in the git status output […]

Categories
Linux

Search for Multiple Strings in Linux Command Line

Update (2026): This guide has been updated with modern Linux CLI tools, performance optimizations, and common terminal patterns for searching multiple strings seamlessly. Searching for multiple strings inside text files or terminal streams is an absolute staple of system administration, DevOps, and backend software engineering. While traditional Linux systems offer classic tools like grep, modern […]