https://neurohorizon.cn/zh/posts/linux-find-command-examples/ #297
Replies: 1 comment
-
hello here ! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
https://neurohorizon.cn/zh/posts/linux-find-command-examples/
find /home/user/documents -name "example.txt"
find /var/log -name "*.log"
find /etc -mtime -7
find /usr/local -mtime +30
find /tmp -name "oldfile.txt" -delete
find /var/www/ -empty
find /home/user/downloads -size +100MB
find /home -user username
find /etc/-perm 0644
find /var/log -name "*.log" -exec gzip {} ;
find /home/user/documents -type f -empty -exec rm {} ;
find /home/user/documents -type f -exec is -lh {} ;
find / -path "/proc" -prune -o -name "*.conf"
find /var/www -mmin -60
-czvf archive.tar.gz
find /usr/bin -type l
find / -inum 456332
find /home/user -not -name "*.txt"
find /var/log -group syslog
find /home/user/downloads -size +50M -size +100MB
find /var/log -type f exec ls -lt {} +
find /var/log -mmin -120
find /home -user username -group groupname
find /var/log -perm 600
find /var/log -size +1G -exec rm -f {} ;
find /home/user -maxdepth 1 -name "*.txt"
find /var/log -atime +90
find /home/user -name ".*"
find /home/user -ctime +1
find /dev/ -type b
find / -perm /a=r -not -perm /a=w
find /home/user -name "config"
link: sysxplore.com
https://neurohorizon.cn/zh/posts/linux-find-command-examples/
Beta Was this translation helpful? Give feedback.
All reactions