mediatribe.net -- Drupal and Web Development

Notice: this post was last updated 6 years 27 weeks ago so it might be outdated. Please be cautious before implementing any of suggestions herein.

Finding files by name in Linux

One way of searching for a file containing "abc" through a file system without annoying "Permission denied" messages:

find . -name '*abc*' 2>/dev/null