Answers for "search command in linux"

1

search in centos terminal

find / -name "filename"
Posted by: Guest on December-23-2020
2

find command in linux

find /home/linuxize -type f -name document.pdfCopy
Posted by: Guest on March-19-2021
1

find in linux

$ find [where to start searching from]
 [expression determines what to find] [-options] [what to find]
 
 $ find ./GFG -name sample.txt
Posted by: Guest on February-20-2021
0

find command in linux

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

find command in linux

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language