mediatribe.net -- Drupal et développement web

Notice: this post was last updated Il y a 6 years 27 weeks 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