Re: Beginning of the end for xDSL?

2001-01-24 Thread Jon 'maddog' Hall, Executive Director, Linux International
Bayard, I don't read this as "the end of xDSL", but I do read it as the end of the "little guy" buying some xDSL capacity from "the big guy", then re-selling it. I think "the big guy" is going to sell it directly, just like they sold telephone service for so many years. "Baby Bell", yeah...a 2

Re: GNHLUG 1st quarter meeting

2001-01-24 Thread Karl J. Runge
On Wed, 24 Jan 2001, "Jon 'maddog' Hall, Executive Director, Linux International" <[EMAIL PROTECTED]> wrote: > >"Be it ever so humble, there is no place like Gnome." - md Humble?!?:) ** To unsubscribe from this list, send ma

Re: GNHLUG 1st Quarter meeting

2001-01-24 Thread Kevin M. Gleason
Jerry, When is the meeting? Kevin Jerry Kubeck wrote: > Here is the first announcement of the 1st quarter meeting. > > The meeting will be held at Martha's Exchange, 185 Main Street, Nashua, NH > at 7 pm, with dinner before. > > The presenter will be Moiz Kohari, President of Mission Critical

Re: MySQL - site - software - and maybe a little help

2001-01-24 Thread Kenneth E. Lussier
http://www.mysql.com . It's about as authoritative as you can get. Kenny John Redding wrote: > > Hi, > > Can somebody direct me to a very authoritative site dealing with MySQL, and > where I can download the latest version of it? > > Also is there someone that can spend a couple of hours tuto

MySQL - site - software - and maybe a little help

2001-01-24 Thread John Redding
Hi, Can somebody direct me to a very authoritative site dealing with MySQL, and where I can download the latest version of it? Also is there someone that can spend a couple of hours tutoring, over the net, some of my Indian software engineers in its use? Thanks. John == John Redding

Re: GNHLUG 1st quarter meeting

2001-01-24 Thread Paul Lussier
In a message dated: Wed, 24 Jan 2001 17:48:53 EST "Jon 'maddog' Hall, Executive Director, Linux International" said: > >[EMAIL PROTECTED] said: >> a Monkey from Helix Code > >You mean a monkey from Ximian (pronouced ZEE-ee-un, www.ximian.com). Well, to carry on the tradition of being pedantic, w

Re: GNHLUG 1st quarter meeting

2001-01-24 Thread Jon 'maddog' Hall, Executive Director, Linux International
[EMAIL PROTECTED] said: > a Monkey from Helix Code You mean a monkey from Ximian (pronouced ZEE-ee-un, www.ximian.com). "Be it ever so humble, there is no place like Gnome." - md md -- = Jon "maddog" Hall Execu

Re: Monadlug Feb meeting

2001-01-24 Thread Benjamin Scott
On Wed, 24 Jan 2001, Jerry Kubeck wrote: > Our next meeting is Feb 1st at 7 pm, Peterborough Library. The presentation > is by our very own forever newbie Charlie Farinella showing us the > collaborative powers of Twiki. Can you give us a one- or two-line summary of what Twiki is, so those of u

Re: GNHLUG 1st Quarter meeting

2001-01-24 Thread B Mac
Hi Jerry: What day will the Nashua chapter mtg occur? I also happened to notice the Peterborough mtg on 2/7, and the call for presentation equipment. I am totally green with Linux, but I have a Gate 800 mhz notebook AND a piece of equipment that will cable a monitor display onto a TV set, if th

Re: GNHLUG 1st Quarter meeting

2001-01-24 Thread Bruce McCulley
I'd say, come alone, or bring a date, whichever you prefer. Maybe this means Moiz is going to be spending many evenings at Martha's, holding forth on whatever topics seem interesting at the time? Hmm, sounds like a fairly good recipe to me! :-) Jeffry Smith wrote: > Date? > > > Here is the f

Re: GNHLUG 1st Quarter meeting

2001-01-24 Thread Jeffry Smith
Date? > Here is the first announcement of the 1st quarter meeting. > > The meeting will be held at Martha's Exchange, 185 Main Street, Nashua, NH > at 7 pm, with dinner before. > > The presenter will be Moiz Kohari, President of Mission Critical Linux and > the topic will be announced soon. >

Re: bash shell scripting questions

2001-01-24 Thread Kevin D. Clark
[EMAIL PROTECTED] writes: >echo -n "<$i>" >> /tmp/tn.html Of course, "echo -n" isn't portable to all Unices. (it doesn't work with SYSV-influenced /usr/bin/echo's) (but for this use I wouldn't worry about it too much) --kevin -- "It is easier to port a shell than a shell scr

Re: bash shell scripting questions

2001-01-24 Thread Derek Martin
On Wed, 24 Jan 2001, Paul Lussier wrote: > In a message dated: Wed, 24 Jan 2001 12:38:20 EST > "Thomas M. Albright" said: > > ># Create the base web-page > > touch thumbnails.html > > echo "" >> thumbnails.html > > echo "" >> thumbnails.html > > echo "Thumbnails" >> thumbnails.html > >

Re: bash shell scripting questions

2001-01-24 Thread Paul Lussier
In a message dated: Wed, 24 Jan 2001 12:38:20 EST "Thomas M. Albright" said: ># Create the base web-page > touch thumbnails.html > echo "" >> thumbnails.html > echo "" >> thumbnails.html > echo "Thumbnails" >> thumbnails.html > echo "" >> thumbnails.html > echo "" >> thumbnails.html

Re: bash shell scripting questions

2001-01-24 Thread Thomas M. Albright
Thanks to everyone who helped! I got the script to work, especially tanks to Larry. The results can be found at: http://www.tarogue.net/~tom/pictures/ The final script itself follows: < --- Begin My Script --- > #!/bin/bash # Set counter for thumbnail-naming COUNT=1 # If the output file alread

Re: bash shell scripting questions

2001-01-24 Thread Paul Lussier
In a message dated: Wed, 24 Jan 2001 10:02:39 EST "Thomas M. Albright" said: >On Wed, 24 Jan 2001, Tilly, Lawrence wrote: > >> Try this: >> >>#!/usr/bin/ksh >>for DIRECTORY in "$@"; do >> echo $DIRECTORY >> ls $DIRECTORY >>done >> >Do I need to use ksh? I really don't know

RE: bash shell scripting questions

2001-01-24 Thread Tilly, Lawrence
I haven't come across any probs between the ksh and bash shells for basic scripts. I started scripting in bash but moved to ksh (mostly because it's pretty standard on both unix and linux boxes, while it's hard to find bash on unix machines). Both ksh and bash have the philosophy of improving bo

RE: bash shell scripting questions

2001-01-24 Thread Thomas M. Albright
On Wed, 24 Jan 2001, Tilly, Lawrence wrote: > Try this: > >#!/usr/bin/ksh >for DIRECTORY in "$@"; do > echo $DIRECTORY > ls $DIRECTORY >done > Do I need to use ksh? I really don't know much (read: anything) about that shell. Would the same for loop work in bash? -- Thoma

Re: bash shell scripting questions

2001-01-24 Thread Thomas M. Albright
On Wed, 24 Jan 2001, Benjamin Scott wrote: > On Tue, 23 Jan 2001, Thomas M. Albright wrote: > > I just finished writing a shell script. Well, not really cause it > > doesn't do what I want yet. Anyway: > > Nobody has asked this yet: What is it that you want it to do? :-) > Make a web-page of

Re: bash shell scripting questions

2001-01-24 Thread Thomas M. Albright
On Wed, 24 Jan 2001, Michael O'Donnell wrote: > >I have a pictures directory. in that directory are > >three more called disk1, disk2, and disk3. > > > >What the script is *supposed* to do is "ls $1*.jpg" > >but when I use disk* as the variable, all I get back > >is the contents of disk1. > > Le

Re: bash shell scripting questions

2001-01-24 Thread Derek Martin
Yesterday, Thomas M. Albright gleaned this insight: > I just finished writing a shell script. Well, not really cause it > doesn't do what I want yet. Anyway: > > I have a pictures directory. in that directory are three more called > disk1, disk2, and disk3. > > What the script is *supposed* to

what to upgrade for the 2.4 kernel

2001-01-24 Thread Bayard Coolidge USG ZKO3-3/S20
Ferenc Tamas Gyurcsan <[EMAIL PROTECTED]> asked: >>> I was wondering what needs to be upgraded (recompiled) if I install 2.4 kernel http://www.linuxhq.com/kernel/v2.4/doc/Changes.html It's also in the kernel tree itself (under Documentation/CHANGES, I think, but someone who has immediate acces

Re: 'nother question

2001-01-24 Thread Paul Lussier
In a message dated: Wed, 24 Jan 2001 04:37:53 EST Peter Cavender said: >> Unless you look on *any* RedHat cd or FTP archive which has the RedHat >> directory :) >> -- > >AND EVEN THEN, someplaces it is "RedHat" and others "redhat" !! I don't think so. I think what you're thinking of is the lo

RE: bash shell scripting questions

2001-01-24 Thread Tilly, Lawrence
Try this: #!/usr/bin/ksh for DIRECTORY in "$@"; do echo $DIRECTORY ls $DIRECTORY done When called, such as:list.ksh disk* your shell will expand the * to cover disk1, disk2, etc. These are then all assigned as the value of $@. This can be done w/ a while loop, but the

Re: bash shell scripting questions

2001-01-24 Thread Kevin D. Clark
[EMAIL PROTECTED] writes: > Let's say that you've named your script tomScript. > From your description it sounds like you're invoking > it thus: > >tomScript disk* > > and then expecting to see the string "disk*" as the > first argument. Now that you mention this, I'll bet that this is

Re: bash shell scripting questions

2001-01-24 Thread Benjamin Scott
On Tue, 23 Jan 2001, Thomas M. Albright wrote: > I just finished writing a shell script. Well, not really cause it > doesn't do what I want yet. Anyway: Nobody has asked this yet: What is it that you want it to do? :-) -- Ben Scott <[EMAIL PROTECTED]> Net Technologies, Inc.

Re: bash shell scripting questions

2001-01-24 Thread Thomas M. Albright
On Wed, 24 Jan 2001, Kevin D. Clark wrote: > > [EMAIL PROTECTED] writes: > > > What bothers me is the fact that the command works from the command > > line, but not from within the script. I've never had this happen before! > > (Really!) > > What shell are you using at the command line? > echo $S

Re: bash shell scripting questions

2001-01-24 Thread Michael O'Donnell
>I have a pictures directory. in that directory are >three more called disk1, disk2, and disk3. > >What the script is *supposed* to do is "ls $1*.jpg" >but when I use disk* as the variable, all I get back >is the contents of disk1. Let's say that you've named your script tomScript. >From your

RE: 'nother question

2001-01-24 Thread Lawrence.Tilly
Another compelling argument for the superiority of Debian...after all, you never see them spell it "deb ian". ;-) -Larry -Original Message- From: Peter Cavender [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 4:38 AM To: Paul Lussier

Re: bash shell scripting questions

2001-01-24 Thread Kevin D. Clark
[EMAIL PROTECTED] writes: > What bothers me is the fact that the command works from the command > line, but not from within the script. I've never had this happen before! > (Really!) What shell are you using at the command line? What shell is running the shell script? Can you provide a small

Re: bash shell scripting questions

2001-01-24 Thread Thomas M. Albright
It's still only getting the file list from disk1. What bothers me is the fact that the command works from the command line, but not from within the script. I've never had this happen before! (Really!) On Tue, 23 Jan 2001, Bruce Dawson wrote: > Instead of 'ls', try: > > find $1 -name \*.jp

Re: bash shell scripting questions

2001-01-24 Thread Jerry Feldman
Note that ther find has an ls option. find $1 -name \*.jpg -ls Which will give you a more detailed listing then just the find with the (assumed) -print option. Bruce Dawson wrote: > Instead of 'ls', try: > > find $1 -name \*.jpg > > Note that you'll have to use '.' if you want all the f

Re: 'nother question

2001-01-24 Thread Peter Cavender
> >> Just to prove that I'm still the pedantic bastard I've always been, > >[...] > >> Granted, RedHat spells the name of its BIND rpm all in lower case, > > > > Please note that "RedHat" is actually "Red Hat". > > > >Pedantic bastard my ass... :-) > > Unless you look on *any* RedHat cd or

Re: bash shell scripting questions

2001-01-24 Thread Peter Cavender
> > > I just finished writing a shell script. Well, not really cause it > > > doesn't do what I want yet. Anyway: > > > > > > I have a pictures directory. in that directory are three more called > > > disk1, disk2, and disk3. > > > > > > What the script is *supposed* to do is "ls $1*.jpg" but when