I am trying to do a find of all world writable files AND directories:
find / -perm -002 -type f -ls (will find all the files)
find / -perm -002 -type d -ls (will find all the directories)
Is there a way that I can combine the two commands rather than having to run them one after another?
I tried ' find / -perm -002 -type fd -ls ', but the syntax is wrong.
Thanks!
find / -perm -002 -type f -ls (will find all the files)
find / -perm -002 -type d -ls (will find all the directories)
Is there a way that I can combine the two commands rather than having to run them one after another?
I tried ' find / -perm -002 -type fd -ls ', but the syntax is wrong.
Thanks!