Answers for "linux find comand"

0

find command in linux

find /etc/dovecot/conf.d -name "*.conf" -mtime 5Copy
Posted by: Guest on March-19-2021
0

linux find command

find / -name .profile -print
find . -perm 0600 -print
find ./test ./logs -name failed*.* -type f
find . -ctime 1 -print
find . -name ‘*find*’ -print
Posted by: Guest on February-19-2022
0

find command in linux

find /var/log/nginx -type f -name '*.log.gz'Copy
Posted by: Guest on March-19-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language