1. find files in Linux
find path -name filename
Use find
from the command line to locate a specific file by name or extension. The following example searches for *.err
files in the /home/username/
directory and all sub-directories:
find /home/username/ -name "*.err"
原文:https://www.cnblogs.com/dulun/p/12202357.html