1753464 Members
4639 Online
108794 Solutions
New Discussion юеВ

Re: HPUX File System

 
Soumya Poddar
Advisor

HPUX File System

Could you please tell me what is InCoreFE and some document link from which I can get more knowladge about it. And is there any System cal or function is there to get the INCoreFE of a file . I just want to find the list of files owned by a user.
2 REPLIES 2
Steven Schweda
Honored Contributor

Re: HPUX File System

> [...] what is InCoreFE [...]

I have no idea. Where did you hear of it?

> [...] I just want to find the list of files
> owned by a user.

man find

Look for "-user"?
Mike Miller_8
Regular Advisor

Re: HPUX File System

find /DirectoryName -user USERID -exec ls -l {} \;

The "DirectoryName" should be the top level directory of where to start looking. The USERID is the user's ID. Optionally you can use "-print" instead of "-exec ls -l {} \;" if you want less detail.