Back to the main page

Mailing List Logs for ShadowRN

Message no. 1
From: gurth@******.nl (Gurth)
Subject: [OT] Re: [SR3] Matrix search and system familiarity
Date: Tue, 09 Jan 2007 17:18:53 +0100
According to Derek Hyde, on 9-1-07 17:05 the word on the street was...

> Really? Works fine on mine, that's how I put it in....given time to run
> spotlight found all but 7 of my songs using that search string....

http://www.xs4all.nl/~gurth/troep/spotlight.png should give you the
general idea ... :)

--
Gurth@******.nl - Stone Age: http://www.xs4all.nl/~gurth/index.html
Van e-mail bakt men cyberbrood.
-> Former NAGEE Editor & ShadowRN GridSec * Triangle Virtuoso <-
-> The Plastic Warriors Site: http://plastic.dumpshock.com <-

GC3.12: GAT/! d- s:- !a>? C++(---) UB+ P(+) L++ E W++(--) N o? K w-- O
M+ PS+ PE@ Y PGP- t- 5++ X(+) R+++$ tv+(++) b++@ DI- D G+ e h! !r y?
Incubated into the First Church of the Sqooshy Ball, 21-05-1998
Message no. 2
From: n.kobschaetzki@**********.com (Niels_KobschÀtzki)
Subject: [OT] Re: [SR3] Matrix search and system familiarity
Date: Tue, 9 Jan 2007 17:39:10 +0100
On Jan 9, 2007, at 5:18 PM, Gurth wrote:

> According to Derek Hyde, on 9-1-07 17:05 the word on the street was...
>
>> Really? Works fine on mine, that's how I put it in....given time
>> to run
>> spotlight found all but 7 of my songs using that search string....
>
> http://www.xs4all.nl/~gurth/troep/spotlight.png should give you the
> general idea ... :)

i can copy that
*.mp3 finds only ca. 500 mp3s
mp3 finds all mp3s i think and other stuff
best is in terminal typing:

find ~/ -iname *.mp[3,4] > music.txt

that finds also my mp4s (ok - now it finds also some movies...) --
i'm working on finding the m4p-files as well ;)

Niels
Message no. 3
From: ggerrietts@*****.com (Geoff Gerrietts)
Subject: [OT] Re: [SR3] Matrix search and system familiarity
Date: Tue, 9 Jan 2007 10:14:26 -0800
The classic unix way would be:

find ~ \( -iname *.mp3 -iname *.mp4 -o -iname *.m4p \) -print > music.txt

That crazy [3,4] doesn't work under my Linux shells.

--G.

On 1/9/07, Niels Kobschätzki <n.kobschaetzki@**********.com> wrote:
>
> On Jan 9, 2007, at 5:18 PM, Gurth wrote:
>
> > According to Derek Hyde, on 9-1-07 17:05 the word on the street was...
> >
> >> Really? Works fine on mine, that's how I put it in....given time
> >> to run
> >> spotlight found all but 7 of my songs using that search string....
> >
> > http://www.xs4all.nl/~gurth/troep/spotlight.png should give you the
> > general idea ... :)
>
> i can copy that
> *.mp3 finds only ca. 500 mp3s
> mp3 finds all mp3s i think and other stuff
> best is in terminal typing:
>
> find ~/ -iname *.mp[3,4] > music.txt
>
> that finds also my mp4s (ok - now it finds also some movies...) --
> i'm working on finding the m4p-files as well ;)
>
> Niels
>
Message no. 4
From: n.kobschaetzki@**********.com (Niels_KobschÀtzki)
Subject: [OT] Re: [SR3] Matrix search and system familiarity
Date: Tue, 9 Jan 2007 19:18:17 +0100
On Jan 9, 2007, at 7:14 PM, Geoff Gerrietts wrote:

> The classic unix way would be:
>
> find ~ \( -iname *.mp3 -iname *.mp4 -o -iname *.m4p \) -print >
> music.txt
>
> That crazy [3,4] doesn't work under my Linux shells.

i'm using bash2.05b on mac os 10.4.8 or bash 3.0.0.16 under SuSE
Linux (just a vserver -- can't easily install a good distribution)
and there works [] fine

Niels
Message no. 5
From: justin@***********.net (Justin Bell)
Subject: [OT] Re: [SR3] Matrix search and system familiarity
Date: Tue, 09 Jan 2007 13:18:21 -0500
Geoff Gerrietts wrote:
> The classic unix way would be:
>
> find ~ \( -iname *.mp3 -iname *.mp4 -o -iname *.m4p \) -print > music.txt
>
> That crazy [3,4] doesn't work under my Linux shells.


Actually, it would be
find ~ \( -iname \*.mp3 -iname \*.mp4 -o -iname \*.m4p \) -print

Otherwise most shells will try an expand the * with matching filenames
within the directory.
Message no. 6
From: ggerrietts@*****.com (Geoff Gerrietts)
Subject: [OT] Re: [SR3] Matrix search and system familiarity
Date: Tue, 9 Jan 2007 10:23:12 -0800
yeah you're right -- i actually used double-quotes rather than backslashes
around the patterns.

and when you take user error out of the equation:

find . \( -iname "*.mp[34]" -o -iname "*.m4p" \) -print

including the comma will actually match the comma (on the off chance you
have a file mysong.mp, that you don't want matched haha).

On 1/9/07, Justin Bell <justin@***********.net> wrote:
>
> Geoff Gerrietts wrote:
> > The classic unix way would be:
> >
> > find ~ \( -iname *.mp3 -iname *.mp4 -o -iname *.m4p \) -print >
> music.txt
> >
> > That crazy [3,4] doesn't work under my Linux shells.
>
>
> Actually, it would be
> find ~ \( -iname \*.mp3 -iname \*.mp4 -o -iname \*.m4p \) -print
>
> Otherwise most shells will try an expand the * with matching filenames
> within the directory.
>
Message no. 7
From: adam_carter@******.net (Adam Carter)
Subject: [OT] Re: [SR3] Matrix search and system familiarity
Date: Tue, 9 Jan 2007 10:58:09 -0800
You guys must totally get the girls with moves like this...


-----Original Message-----
From: shadowrn-bounces@*****.dumpshock.com
[mailto:shadowrn-bounces@*****.dumpshock.com] On Behalf Of Geoff Gerrietts
Sent: Tuesday, January 09, 2007 10:23 AM
To: Shadowrun Discussion
Subject: Re: [OT] Re: [SR3] Matrix search and system familiarity

yeah you're right -- i actually used double-quotes rather than backslashes
around the patterns.

and when you take user error out of the equation:

find . \( -iname "*.mp[34]" -o -iname "*.m4p" \) -print

including the comma will actually match the comma (on the off chance you
have a file mysong.mp, that you don't want matched haha).

On 1/9/07, Justin Bell <justin@***********.net> wrote:
>
> Geoff Gerrietts wrote:
> > The classic unix way would be:
> >
> > find ~ \( -iname *.mp3 -iname *.mp4 -o -iname *.m4p \) -print >
> music.txt
> >
> > That crazy [3,4] doesn't work under my Linux shells.
>
>
> Actually, it would be
> find ~ \( -iname \*.mp3 -iname \*.mp4 -o -iname \*.m4p \) -print
>
> Otherwise most shells will try an expand the * with matching filenames
> within the directory.
>
Message no. 8
From: justin@***********.net (Justin Bell)
Subject: [OT] Re: [SR3] Matrix search and system familiarity
Date: Tue, 09 Jan 2007 14:04:17 -0500
Adam Carter wrote:
> You guys must totally get the girls with moves like this...

You'd be surprised.
Message no. 9
From: ggerrietts@*****.com (Geoff Gerrietts)
Subject: [OT] Re: [SR3] Matrix search and system familiarity
Date: Tue, 9 Jan 2007 11:24:38 -0800
On 1/9/07, Adam Carter <adam_carter@******.net> wrote:
>
> You guys must totally get the girls with moves like this...
>

Hee! Yeah I'm not sure if it's my impressive command-line-fu, my large ...
vocabulary, or my dastardly good looks that has honeys like Etna and Yuna
swooning over me.

But seriously, there's a piece of the Venn diagram where "nerdy",
"unix-loving", "female", and "attractive" all overlap.
That's the sweet spot
right there.
Message no. 10
From: davek@***.lonestar.org (David Kettler)
Subject: [OT] Re: [SR3] Matrix search and system familiarity
Date: Tue, 9 Jan 2007 19:31:27 +0000
On Tue, Jan 09, 2007 at 11:24:38AM -0800, Geoff Gerrietts wrote:
>
> But seriously, there's a piece of the Venn diagram where "nerdy",
> "unix-loving", "female", and "attractive" all overlap.
That's the sweet spot
> right there.

A damn small piece. Nice if you can find it, but...

--
Dave Kettler
davek@***.lonestar.org
SDF Public Access UNIX System - http://sdf.lonestar.org
Message no. 11
From: korishinzo@*****.com (Ice Heart)
Subject: [OT] Re: [SR3] Matrix search and system familiarity
Date: Tue, 9 Jan 2007 11:33:19 -0800 (PST)
--- Adam Carter <adam_carter@******.net> wrote:

> You guys must totally get the girls with moves like this...

*blinks and reaches for something sharp*

======Korishinzo
--I had a monowhip around here somewhere... ;)

__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

Further Reading

If you enjoyed reading about [OT] Re: [SR3] Matrix search and system familiarity, you may also be interested in:

Disclaimer

These messages were posted a long time ago on a mailing list far, far away. The copyright to their contents probably lies with the original authors of the individual messages, but since they were published in an electronic forum that anyone could subscribe to, and the logs were available to subscribers and most likely non-subscribers as well, it's felt that re-publishing them here is a kind of public service.