Find Command dillemma

Discussion in 'Technical' started by renegadeviking, Mar 17, 2009.

  1. renegadeviking

    renegadeviking New Member

    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 or find / -perm -u=rwx or find / -perm -o=rwx or find / -perm +o=rwx. Help much appreciated.

    AND IT HAS TO BE WRITTEN LIKE THOSE AND NO OTHER WAY AROUND IT, BECAUSE IT IS HOMEWORK
     
    Last edited: Mar 18, 2009
  2. tebokkel

    tebokkel New Member

    Assuming your homework is loooong way due:

    find / -type f -perm -o=rwx

    It's in the manual..
     

Share This Page