Answers for "macos find file or directory by name"

0

macos find file or directory by name

find / -name *custom.css -print 2>/dev/null
# / means where to search
# *custom.css means search for all files that have the string "custom.css" in it
# -print 2>/dev/null deletes all error messages like permission denied
# Have fun :)
Posted by: Guest on August-06-2021

Code answers related to "macos find file or directory by name"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language