Results 1 to 3 of 3
Hi Linux enthusiast.
I'm having trouble with the Find / -perm command. I am trying to located all the files in my home directory + subdirectories granting read, write, execute ...
- 03-17-2009 #1Just Joined!
- Join Date
- Jun 2007
- Posts
- 30
Fedora 10 find command (updated 6:02 PM)
Hi Linux enthusiast.
I'm having trouble with the Find / -perm command. I am trying to located all the files in my home directory + subdirectories granting read, write, execute FOR ALL USERS.
I don't know if I should do
find / -perm +u=rwx
find / -perm -u=rwx
find / -perm -o=rwx
find / -perm +o=rwx.
Help much appreciated.Last edited by renegadeviking; 03-17-2009 at 11:02 PM. Reason: FOR ALL USERS
- 03-17-2009 #2
Hi there,
The following should do the trick:
Code:cd ~ find . -perm -007
- 03-18-2009 #3Just Joined!
- Join Date
- Jun 2007
- Posts
- 30



