A simple space to stash my notes and share the occasional bit of content. Nothing flashy. We all search for answers online, but rarely give anything back – so I figured I’d upload some of my notes, just in case they help someone else and to also help me remember! A note:
-
Recursively delete files/folders
A handy snippet for recursively deleting files and folders (within the a given folder) that contain the specified string:
find -name '*Landman*' -exec rm -rv {} +
Based upon this StackExchange article.