Re: Re[2]: [Scottish] OT: Weird domain stuff

2003-01-18 Thread William Anderson
Mark Robinson wrote:
> Hello William,
> 
> Monday, 13 January 2003, you wrote:
> 
> WA> Your domain was registered with Network Solutions, not BulkRegister -
> WA> someone is illegally trying to grab your domain before (or when) it
> expires WA> on the 10th of February.
> 
> WA> I suggest you contact your ISP Force9 (aka PlusNet), who registered
> the WA> domain on your behalf, as soon as possible, forwarding them the
> email and as WA> much detail as you can.
> 
> I did what you suggested, and they told me that it was them that has
> initiated the transfer as they are leaving Network Solutions!  Nice of
> them to tell us in advance eh?

sounds ridiculous, and typical of PlusNet :(

-- 
_ __/|   ___  ___ __ _ "When Microsoft Office is your only hammer,
\`O_o'  / _ \/ -_) // / __/ _ \ pretty much everything begins to look like
=(_ _)=/_//_/\__/\_,_/_/  \___/ a nail. Or a thumb." -- Rob Pegoraro
   U - Ack! Phttpt! Thhbbt! neuro at well dot com  http://neuro.me.uk/

___
Scottish mailing list
[EMAIL PROTECTED]
http://mailman.lug.org.uk/mailman/listinfo/scottish



Re: [Scottish] dual p3 motherboard

2003-01-18 Thread William Anderson
bob renshaw wrote:
> Does anyone know where I can obtain a dual p3 motherboard (slot A)

ITYM Slot 1 - Slot A was the similar looking connector used by AMD for early
Athlon CPUs.  As for a dual Slot 1 board, they may be hard to come by new.
If you can go for Socket 370 instead, I picked a Tyan Tiger 230T just a few
days ago for £85 ex VAT from www.scan.co.uk (I had to phone in the order as
the price isn't listed on their site).

--
_ __/|   ___  ___ __ _ "When Microsoft Office is your only hammer,
\`O_o'  / _ \/ -_) // / __/ _ \ pretty much everything begins to look like
=(_ _)=/_//_/\__/\_,_/_/  \___/ a nail. Or a thumb." -- Rob Pegoraro
   U - Ack! Phttpt! Thhbbt! neuro at well dot com  http://neuro.me.uk/


___
Scottish mailing list
[EMAIL PROTECTED]
http://mailman.lug.org.uk/mailman/listinfo/scottish



Re: [Scottish] Best way to find text within files recursively?

2003-01-18 Thread Graeme Mathieson
On Sat, Jan 18, 2003 at 07:55:38PM +, Allan Whiteford wrote:
> 
> In a slightly more convoluted way, but one in which can be applied
> easily to any command to give recursive capabilities:
> 
> grep -l [EMAIL PROTECTED] `find .`
> 
> (Note the direction of the quotes, and also filenames with spaces will
> probably mess things up.)

It's also going to break grep if find returns too many results.  And
find there will return directories too, which grep will not take too
kindly to.  My SOP recursive grep is:

find . -type f -print0 |xargs -0 grep 'foo'

OTOH, I've no idea offhand why I don't just use rgrep (aka `grep -r`)...
:-)
-- 
Right now, there are scr1pt k1dd13s plotting to DDoS my network, my co-lo
server is not responding  to pings and  the people that I IRC with may be
involved in both.  I'm  sysadmin Graeme Mathieson and this is the longest
day of my life.   http://www.wossname.org.uk/~mathie/

___
Scottish mailing list
[EMAIL PROTECTED]
http://mailman.lug.org.uk/mailman/listinfo/scottish



Re: [Scottish] Best way to find text within files recursively?

2003-01-18 Thread Allan Whiteford
[EMAIL PROTECTED] wrote:
> 
> > for (every folder in this directory)
> >   grep -l [EMAIL PROTECTED] *
> 
> Would "grep -rl [EMAIL PROTECTED] *" do what you want?
> 
> Steven Murdoch.
> 
> ___
> Scottish mailing list
> [EMAIL PROTECTED]
> http://mailman.lug.org.uk/mailman/listinfo/scottish

In a slightly more convoluted way, but one in which can be applied
easily to any command to give recursive capabilities:

grep -l [EMAIL PROTECTED] `find .`

(Note the direction of the quotes, and also filenames with spaces will
probably mess things up.)

Thanks,

Allan
-- 
The average person's left hand does 56% of the typing.

___
Scottish mailing list
[EMAIL PROTECTED]
http://mailman.lug.org.uk/mailman/listinfo/scottish



Re: [Scottish] Best way to find text within files recursively?

2003-01-18 Thread iain d broadfoot
* [EMAIL PROTECTED] ([EMAIL PROTECTED]) wrote:
> > for (every folder in this directory)
> > grep -l [EMAIL PROTECTED] *
> 
> Would "grep -rl [EMAIL PROTECTED] *" do what you want?
> 

yep, it sure does. :D

i'd add -i and quotes around the email, just for added goodness..

iain

-- 
wh33, y1p33 3tc.

___
Scottish mailing list
[EMAIL PROTECTED]
http://mailman.lug.org.uk/mailman/listinfo/scottish



Re: [Scottish] Best way to find text within files recursively?

2003-01-18 Thread scottish+Steven . Murdoch
> for (every folder in this directory)
>   grep -l [EMAIL PROTECTED] *

Would "grep -rl [EMAIL PROTECTED] *" do what you want?

Steven Murdoch.

___
Scottish mailing list
[EMAIL PROTECTED]
http://mailman.lug.org.uk/mailman/listinfo/scottish