Access rights for users - list

Hi,

I would like to retrieve a list of user ids on an AIX server along with the access rights that each id has? Can someone please help me on how this can be achieved?

Gayathri

That's a bit abstract. What kind of access rights?

The read/write/execute access

This will create a file for each user:

for a in $(cut -d: -f1 /etc/passwd); do find / -user $a -exec ls -dla {} \; >> $a.out; done

Since this will be awful much output, you might need some space in the place you write those files to.

So it turns out to be no AIX specific question - moving the thread.