xxxxxxxxxx
# Basic syntax:
find ~+
# Where:
# - as I understand it, ~+ is a type of "Tilde Expansion" that's equivalent
# to $PWD (but shorter to type). See the following link for more on this:
# https://stackoverflow.com/questions/998626/meaning-of-tilde-in-linux-bash-not-home-directory
# Example usage:
# Say you want to get the full path of all files that contain the word fish up
# to a depth of 2 folders. This could be achieved with the following command:
find ~+ -maxdepth 2 -type f -name "*fish*"