# Outputs all the file names/paths that start with the name "Casey". Searches recursively starting from my current directory (.) # Throws out any error output by sending it to /dev/null find . -name "Casey*" 2>/dev/null
# Outputs all the file names/paths that start with the name "Casey". Searches recursively starting from my current directory (.) # Throws out any error output by sending it to /dev/null find . -name "Casey*" 2>/dev/null