What is new program name?

JosephK joseph at oxtedonline.net
Sat Mar 15 16:07:39 UTC 2008


On 17:33 Sat 15 Mar     , Dotan Cohen wrote:
> On 15/03/2008, Vincent Trouilliez <vincent.trouilliez at modulonet.fr> wrote:
> > On Sat, 15 Mar 2008 16:45:22 +0200
> >  "Dotan Cohen" <dotancohen at gmail.com> wrote:
> 
> I'm trying to do this with the GUI. I suppose if I sort /usr/bin by
> timestamp I'd have my answer. But I cannot find the right syntax with
> ls and sort.
> 

The following will list ALL files modified on Mar 15

date='Mar 15'
ls -l | grep -i "^.\{42\}$date" | cut -c55-

Change the date accordingly and pipe the result back through grep to
filter bin files. Untried, but should work.

-- 
Regards, Joe




More information about the ubuntu-users mailing list