![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| command to find the files under particular owner | jayaramanit | UNIX for Dummies Questions & Answers | 2 | 08-22-2008 11:08 AM |
| how to extract owner from find command | tjay83 | Shell Programming and Scripting | 5 | 08-12-2008 01:21 AM |
| determine owner of a file | unibboy | Shell Programming and Scripting | 4 | 01-26-2008 11:39 AM |
| Owner of file gets 'not owner' error for chgrp | brizrobbo | SUN Solaris | 4 | 12-18-2007 02:30 PM |
| change owner of a file | CBarraford | UNIX for Dummies Questions & Answers | 3 | 03-03-2007 08:37 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#8
|
||||
|
||||
|
is fairly simple to make a c app that uses the stat() function of the <sys/stat.h> and just prints the stuff,
|
| Forum Sponsor | ||
|
|
|
#9
|
|||
|
|||
|
And even simpler with Perl, which tends to be installed most places these days.
|
|
#10
|
|||
|
|||
|
but the following wins the award for being most simple
ls -l filename | awk {'print $3'} |
|||
| Google The UNIX and Linux Forums |