Operating System - HP-UX
1832553 Members
6343 Online
110043 Solutions
New Discussion

Find World Writable files

 
SOLVED
Go to solution
Carl Munnelly
Frequent Advisor

Find World Writable files

I want to find World Wide writable files on UX 11i

trying find / -local -perm -002 \(type f -o -type d \) -print

but this returns "missing conjuction.

Any ideas
3 REPLIES 3
curt larson_1
Honored Contributor
Solution

Re: Find World Writable files

is \(type f -o -type d \) a typo
\(-type f -o -type d \)
Sundar_7
Honored Contributor

Re: Find World Writable files

Try this

find / -local -perm -002 \( -type f -o -type d \) -print

You dont have a hyphen before type
Learn What to do ,How to do and more importantly When to do ?
Carl Munnelly
Frequent Advisor

Re: Find World Writable files

Sometimes on nights you need someone else to spot you obvious error as you don't spot them yourself