bashANYfindname
bash
find /var/log -name 'syslog'Powerful Linux search commands using find, locate, xargs, and metadata filters.
find /var/log -name 'syslog'find . -iname '*.jpg'find . -type d -name 'node_modules'find /etc -type lfind / -type f -size +100M 2>/dev/nullfind . -type f -mtime -1find . -type f -atime +30find . -type f -newer reference.txtfind /var/www -type f -perm -002find /home -user alicefind /srv -group www-datafind / -nouser 2>/dev/nullfind /tmp -type f -name '*.tmp' -deletefind . -type f -name '*.sh' -exec chmod +x {} +locate nginx.confsudo updatedb