Subject: Re: Filesystem using tags, not folders?
To: Michal Suchanek <hramrach@centrum.cz>
From: Ben Collver <collver@peak.org>
List: current-users
Date: 06/12/2006 07:36:50
On Mon, Jun 12, 2006 at 04:13:29PM +0200, Michal Suchanek wrote:
> On 6/12/06, Ben Collver <collver@peak.org> wrote:
> >find ~ -name bookmarks.html
> 
> But it allows for only single tag - the bookmarks.html name. It is
> insufficient for most cases unless you have great memory and can
> remember the names of all your files.

To get multiple tags, you could do something like:

find ~ -type f -printx | xargs grep -li -e bookmarks -e favorite

Cheers,

Ben