Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Feb 2005 09:57:45 -0800
From:      Chris Sechiatano <chris@chris-s.com>
To:        Giorgos Keramidas <keramida@ceid.upatras.gr>
Cc:        freebsd-questions@freebsd.org
Subject:   Re: Script Questions
Message-ID:  <20050215175745.GA48971@chris-s.com>
In-Reply-To: <20050211015707.GA40344@orion.daedalusnetworks.priv>
References:  <20050210231719.GA24067@chris-s.com> <20050210233311.GB3861@orion.daedalusnetworks.priv> <20050211002225.GB24067@chris-s.com> <20050211015707.GA40344@orion.daedalusnetworks.priv>

next in thread | previous in thread | raw e-mail | index | archive | help
Hi Giorgos,

This seems to work.

# slocate -i -d /tmp/04vfile001_db '.wmv' |\
  perl -ne 'chomp; print "$_\0";' |\
  xargs -0 ls -ldh

Thanks for the help.  I really appreciate it!


On Fri, Feb 11, 2005 at 03:57:07AM +0200, Giorgos Keramidas <keramida@ceid.upatras.gr> wrote:
> 
> So, what you really want to use is:
> 
>     # slocate -i -d /tmp/04vfile001_db '.wmv$' |\
>       perl -ne 'chomp; print "$_\0";' |\
>       xargs -0 ls -l
> 
> See if that works better, please.  If not, mail me again.
> 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20050215175745.GA48971>