Find knowledge base article(s) by searching for keywords in the title e.g. type linux in the search box below
Find knowledge base article(s) by browsing the subject categories of articles
Technology quick references, cheatsheets, user manuals etc.
Shop Online through ShopifyLite
Tutorials on various IT applications.
Search Title    (UL:0 |SS:f)

Software >> OS >> Unix >> Linux >> RHEL >> All >> find command examples

## find all files where the permission has user:rw, group:rw, other:r

[root@rhel78t]# find /var/log -type f -perm -u+rw,g+rw,o+r -exec ls -ldh {} \;
-rw-rw-r--. 1 root utmp 604K Oct 11 00:42 /var/log/wtmp


 

## find all files where the permission is -rw-r--r--

[root@rhel78]# find /var/log -type f -perm -u+rw,g+r,o+r -exec ls -ldh {} \;
-rw-r--r--. 1 root root 471K Sep 28 23:50 /var/log/sa/sa28
-rw-r--r--. 1 root root 404K Oct  5 23:53 /var/log/sa/sar05

 

 

[ © 2008-2021 myfaqbase.com - A property of WPDC Consulting ]