Search For Strings Across Files in Linux

bash

Need to search for strings across files in Linux or on a Linux server? Use GREP! This will help you find that pesky module that needs updating or that misspelled table name. My Computer Setup macOS The Solution This command will recursively search files and folders for whatever you’re interested in. Still learning about how … Read moreSearch For Strings Across Files in Linux

Change Directory on a Mac, Linux, or Windows Machine

bash

We’ll be showing you how to change directory on a Mac, Windows, or Linux machine. Need to do something to a file on the terminal? Need to delete an entire folder and its children on the command line like I show here? Well first you might want to get to the same directory where it’s … Read moreChange Directory on a Mac, Linux, or Windows Machine

Delete a Folder and Its Children on a Mac or Linux Terminal

bash

This is how you delete a folder and its children on a mac or linux terminal. Be careful because the f means force! For those of Short on Time Explanation of the Command rm means remove on the command line. rm stuff.py would remove the stuff.py file. This doesn’t work when it’s presented folders. We … Read moreDelete a Folder and Its Children on a Mac or Linux Terminal