in reply to Re: Fetching unique owner name
in thread Fetching unique owner name
HOw would this work? Am I in the right direction??
@temp = '/mydirectory/directory'; my ( @temp, %authors ); @temp = sort map { my @b=split; $b[2]; } `ls -l`; foreach ( @temp ) { $authors{$}=1 if not $authors{$_} and length $_; } print "$_\n" for keys %authors;'
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Fetching unique owner name
by JaWi (Hermit) on Dec 03, 2002 at 17:14 UTC | |
by Anonymous Monk on Dec 03, 2002 at 18:55 UTC | |
by JaWi (Hermit) on Dec 03, 2002 at 19:08 UTC | |
by Anonymous Monk on Dec 03, 2002 at 20:29 UTC |
In Section
Seekers of Perl Wisdom