in reply to Re: Re: Memory Question
in thread Memory Question
If the only thing needing to be checked is permissions, the following would suffice:
Of course you would tailor the find command as PrimeLord indicated (only get specific files with permissions).find / -exec ls -l {} \; > /tmp/pass1 find / -exec ls -l {} \; > /tmp/pass2 diff /tmp/pass1 /tmp/pass2
In my experience, this specific task is faster/easier/efficient using Unix commands.
Cheers - L~R
|
|---|