* Scripting question
@ 2003-01-23 5:14 Michael French
2003-01-23 5:32 ` Andrew B. Cramer
` (2 more replies)
0 siblings, 3 replies; 11+ messages in thread
From: Michael French @ 2003-01-23 5:14 UTC (permalink / raw)
To: linux-admin
I have a couple of scripts that I am working on that pull data from an
application and print a human readable report from the data. I have all of
the data pulled and stored in variables, but I am stumped on how to put in
all in one file. I hope that I can clearly explain this, here goes.
For one script, I have three pieces of info to report: node name,
customer name, and total data stored. The first two bits of data are
getting pulled out together and stored in one file. The third bit is being
calculated and then stored in a second file. I then get the data in like
this:
NODES=`cat nodeinfo.txt | awk '{print $1}'`
CUSTOMER=`cat nodeinfo.txt | awk '{print $2}'`
MBTOTALS=`cat mbtotals.txt`
I then need to print out a report like:
Nodes Customer MB
----------------------------------
node1 customer1 20.0
How can I do this? I can't seem to figure out how to do it with one for
loop.
I have another little script I am working on to report restore data and
it has one temp file holding all of the info I need and is greping out about
10 different pieces of data I need before overwriting the temp file with the
info on the next node. The problem I have run into is that some of the
restores have duplicate data in them so I am going to have to rewrite the
report to put the data in variables and then loop through them to generate a
report just like the one above, except with more variables so you can see
why I am trying to figure out how to do this as cleanly as possible. Maybe
I am starting off all wrong so feel free to redirect me. Also, I am using
Korn shell to do this (my only option).
Thanks!
Michael French
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Scripting question
2003-01-23 5:14 Scripting question Michael French
@ 2003-01-23 5:32 ` Andrew B. Cramer
2003-01-23 7:40 ` urgrue
2003-01-24 0:46 ` rich+ml
2 siblings, 0 replies; 11+ messages in thread
From: Andrew B. Cramer @ 2003-01-23 5:32 UTC (permalink / raw)
To: Michael French, linux-admin
Hi Michael,
Switch to PERL. You open the input files, then open the output file,
sort, and write. Perhaps if there are duplicates, you need additional
information, like a datestamp for each entry to compare.
(.02) - Andrew
On 22 Jan 2003 at 21:14, Michael French wrote:
> I have a couple of scripts that I am working on that pull data from an
> application and print a human readable report from the data. I have all of
> the data pulled and stored in variables, but I am stumped on how to put in
> all in one file. I hope that I can clearly explain this, here goes.
>
> For one script, I have three pieces of info to report: node name,
> customer name, and total data stored. The first two bits of data are
> getting pulled out together and stored in one file. The third bit is being
> calculated and then stored in a second file. I then get the data in like
> this:
>
> NODES=`cat nodeinfo.txt | awk '{print $1}'`
> CUSTOMER=`cat nodeinfo.txt | awk '{print $2}'`
> MBTOTALS=`cat mbtotals.txt`
>
> I then need to print out a report like:
>
> Nodes Customer MB
> ----------------------------------
> node1 customer1 20.0
>
> How can I do this? I can't seem to figure out how to do it with one for
> loop.
>
> I have another little script I am working on to report restore data and
> it has one temp file holding all of the info I need and is greping out about
> 10 different pieces of data I need before overwriting the temp file with the
> info on the next node. The problem I have run into is that some of the
> restores have duplicate data in them so I am going to have to rewrite the
> report to put the data in variables and then loop through them to generate a
> report just like the one above, except with more variables so you can see
> why I am trying to figure out how to do this as cleanly as possible. Maybe
> I am starting off all wrong so feel free to redirect me. Also, I am using
> Korn shell to do this (my only option).
>
> Thanks!
>
> Michael French
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-admin" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Scripting question
2003-01-23 5:14 Scripting question Michael French
2003-01-23 5:32 ` Andrew B. Cramer
@ 2003-01-23 7:40 ` urgrue
2003-01-23 8:38 ` Jude DaShiell
2003-01-24 0:46 ` rich+ml
2 siblings, 1 reply; 11+ messages in thread
From: urgrue @ 2003-01-23 7:40 UTC (permalink / raw)
To: Michael French; +Cc: linux-admin
everyone is gonna tell you to learn a "real" scripting language, but i
wont.
yeah, shell scripts are slow and ugly but, after all, it works, and its
easier than blowing your nose.
anyway i dont have the time to learn perl, so there.
i think it would be easiest to first combine the two files nodeinfo.txt
and mbtotals.txt into one with three columns, using for example any
spreadsheet program.
then you can just do something like:
while read LINE
do
NODES=`echo $LINE | awk '{print $1}'`
CUSTOMER=`echo $LINE | awk '{print $2}'`
TOTAL=`echo $LINE | awk '{print $3}'`
echo -e $NODES\t$CUSTOMER\t$TOTAL >> tmpfile
done < nodeinfo.txt
its much easier to work with one file only. otherwise, all i can think
of is using sed/awk somehow. maybe like:
while read LINE
do
NODES=as above
CUSTOMER=as above
WHAT_LINE_ARE_WE_ON=1
TOTALS=<use awk or sed to print the Nth line of mbtotals.txt, ie the
$WHAT_LINE_ARE_WE_ONth line>
add one to $WHAT...
echo all to a file >> tmpfile
done < nodeinfo.txt
> I have a couple of scripts that I am working on that pull data
> from an
> application and print a human readable report from the data. I have
> all of
> the data pulled and stored in variables, but I am stumped on how to
> put in
> all in one file. I hope that I can clearly explain this, here goes.
>
> For one script, I have three pieces of info to report: node name,
> customer name, and total data stored. The first two bits of data are
> getting pulled out together and stored in one file. The third bit is
> being
> calculated and then stored in a second file. I then get the data in
> like
> this:
>
> NODES=`cat nodeinfo.txt | awk '{print $1}'`
> CUSTOMER=`cat nodeinfo.txt | awk '{print $2}'`
> MBTOTALS=`cat mbtotals.txt`
>
> I then need to print out a report like:
>
> Nodes Customer MB
> ----------------------------------
> node1 customer1 20.0
>
> How can I do this? I can't seem to figure out how to do it with one
> for
> loop.
>
> I have another little script I am working on to report restore
> data and
> it has one temp file holding all of the info I need and is greping out
> about
> 10 different pieces of data I need before overwriting the temp file
> with the
> info on the next node. The problem I have run into is that some of
> the
> restores have duplicate data in them so I am going to have to rewrite
> the
> report to put the data in variables and then loop through them to
> generate a
> report just like the one above, except with more variables so you can
> see
> why I am trying to figure out how to do this as cleanly as possible.
> Maybe
> I am starting off all wrong so feel free to redirect me. Also, I am
> using
> Korn shell to do this (my only option).
>
> Thanks!
>
> Michael French
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-admin"
> in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Scripting question
2003-01-23 7:40 ` urgrue
@ 2003-01-23 8:38 ` Jude DaShiell
0 siblings, 0 replies; 11+ messages in thread
From: Jude DaShiell @ 2003-01-23 8:38 UTC (permalink / raw)
To: urgrue; +Cc: Michael French, linux-admin
There's also paste if the hook up needs to be on identical records.
--
Jude <dashielljt(at)gmpexpress-dot-net>
^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: Scripting question
@ 2003-01-23 13:49 johnjulian1
2003-01-24 2:30 ` Mikhail Romanenko
0 siblings, 1 reply; 11+ messages in thread
From: johnjulian1 @ 2003-01-23 13:49 UTC (permalink / raw)
To: "Michael French", linux-admin
I didn't understand all that you were trying to do so here are some general pointers.
Korn shell supports arrays. You could pull your data in seperate arrays for node, cust and mb then do a loop on the array counter.
while loops often work better than for loops.
i=0
while [ -n "$cust[$i]" ]
do print "$node[$i] $cust[$i] $mb[$i]
i=$(( i + 1 ))
done
"Michael French" <mfrench@ashevillemail.com> wrote:
> I have a couple of scripts that I am working on that pull data from an
>application and print a human readable report from the data. I have all of
>the data pulled and stored in variables, but I am stumped on how to put in
>all in one file. I hope that I can clearly explain this, here goes.
>
> For one script, I have three pieces of info to report: node name,
>customer name, and total data stored. The first two bits of data are
>getting pulled out together and stored in one file. The third bit is being
>calculated and then stored in a second file. I then get the data in like
>this:
>
>NODES=`cat nodeinfo.txt | awk '{print $1}'`
>CUSTOMER=`cat nodeinfo.txt | awk '{print $2}'`
>MBTOTALS=`cat mbtotals.txt`
>
>I then need to print out a report like:
>
>Nodes Customer MB
>----------------------------------
>node1 customer1 20.0
>
>How can I do this? I can't seem to figure out how to do it with one for
>loop.
>
> I have another little script I am working on to report restore data and
>it has one temp file holding all of the info I need and is greping out about
>10 different pieces of data I need before overwriting the temp file with the
>info on the next node. The problem I have run into is that some of the
>restores have duplicate data in them so I am going to have to rewrite the
>report to put the data in variables and then loop through them to generate a
>report just like the one above, except with more variables so you can see
>why I am trying to figure out how to do this as cleanly as possible. Maybe
>I am starting off all wrong so feel free to redirect me. Also, I am using
>Korn shell to do this (my only option).
>
>Thanks!
>
>Michael French
>
>-
>To unsubscribe from this list: send the line "unsubscribe linux-admin" in
>the body of a message to majordomo@vger.kernel.org
>More majordomo info at http://vger.kernel.org/majordomo-info.html
>
__________________________________________________________________
The NEW Netscape 7.0 browser is now available. Upgrade now! http://channels.netscape.com/ns/browsers/download.jsp
Get your own FREE, personal Netscape Mail account today at http://webmail.netscape.com/
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Scripting question
2003-01-23 5:14 Scripting question Michael French
2003-01-23 5:32 ` Andrew B. Cramer
2003-01-23 7:40 ` urgrue
@ 2003-01-24 0:46 ` rich+ml
2003-01-24 0:50 ` rich+ml
2 siblings, 1 reply; 11+ messages in thread
From: rich+ml @ 2003-01-24 0:46 UTC (permalink / raw)
To: Michael French; +Cc: linux-admin
Got Perl?
---
#!/usr/bin/perl
format STDOUT_TOP =
Nodes Customer MB
----------------------------------
.
format =
@<<<<<<<<<<< @<<<<<<<<<<<<<< @>>>>
$1,$2,$3
.
(open A,$ARGV[0]) && (open B,$ARGV[1]) or die $!;
write while split ' ',<A>.<B>;
---
Invoke as one of:
script nodeinfo.txt mbtotals.txt
script - mbtotals.txt < nodeinfo.txt
script nodeinfo.txt - < mbtotals.txt
== Rich
On Wed, 22 Jan 2003, Michael French wrote:
> Date: Wed, 22 Jan 2003 21:14:15 -0800
> From: Michael French <mfrench@ashevillemail.com>
> To: linux-admin@vger.kernel.org
> Subject: Scripting question
>
> I have a couple of scripts that I am working on that pull data from an
> application and print a human readable report from the data. I have all of
> the data pulled and stored in variables, but I am stumped on how to put in
> all in one file. I hope that I can clearly explain this, here goes.
>
> For one script, I have three pieces of info to report: node name,
> customer name, and total data stored. The first two bits of data are
> getting pulled out together and stored in one file. The third bit is being
> calculated and then stored in a second file. I then get the data in like
> this:
>
> NODES=`cat nodeinfo.txt | awk '{print $1}'`
> CUSTOMER=`cat nodeinfo.txt | awk '{print $2}'`
> MBTOTALS=`cat mbtotals.txt`
>
> I then need to print out a report like:
>
> Nodes Customer MB
> ----------------------------------
> node1 customer1 20.0
>
> How can I do this? I can't seem to figure out how to do it with one for
> loop.
>
> I have another little script I am working on to report restore data and
> it has one temp file holding all of the info I need and is greping out about
> 10 different pieces of data I need before overwriting the temp file with the
> info on the next node. The problem I have run into is that some of the
> restores have duplicate data in them so I am going to have to rewrite the
> report to put the data in variables and then loop through them to generate a
> report just like the one above, except with more variables so you can see
> why I am trying to figure out how to do this as cleanly as possible. Maybe
> I am starting off all wrong so feel free to redirect me. Also, I am using
> Korn shell to do this (my only option).
>
> Thanks!
>
> Michael French
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-admin" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Scripting question
2003-01-24 0:46 ` rich+ml
@ 2003-01-24 0:50 ` rich+ml
2003-01-24 2:34 ` Michael French
0 siblings, 1 reply; 11+ messages in thread
From: rich+ml @ 2003-01-24 0:50 UTC (permalink / raw)
To: Michael French; +Cc: linux-admin
Oops, change the "$1,$2,$3" to "$@" == Rich
On Thu, 23 Jan 2003 rich+ml@lclogic.com wrote:
> Date: Thu, 23 Jan 2003 16:46:51 -0800 (PST)
> From: rich+ml@lclogic.com
> To: Michael French <mfrench@ashevillemail.com>
> Cc: linux-admin@vger.kernel.org
> Subject: Re: Scripting question
>
> Got Perl?
> ---
> #!/usr/bin/perl
>
> format STDOUT_TOP =
> Nodes Customer MB
> ----------------------------------
> .
>
> format =
> @<<<<<<<<<<< @<<<<<<<<<<<<<< @>>>>
> $1,$2,$3
> .
>
> (open A,$ARGV[0]) && (open B,$ARGV[1]) or die $!;
> write while split ' ',<A>.<B>;
> ---
>
> Invoke as one of:
> script nodeinfo.txt mbtotals.txt
> script - mbtotals.txt < nodeinfo.txt
> script nodeinfo.txt - < mbtotals.txt
>
> == Rich
>
> On Wed, 22 Jan 2003, Michael French wrote:
>
> > Date: Wed, 22 Jan 2003 21:14:15 -0800
> > From: Michael French <mfrench@ashevillemail.com>
> > To: linux-admin@vger.kernel.org
> > Subject: Scripting question
> >
> > I have a couple of scripts that I am working on that pull data from an
> > application and print a human readable report from the data. I have all of
> > the data pulled and stored in variables, but I am stumped on how to put in
> > all in one file. I hope that I can clearly explain this, here goes.
> >
> > For one script, I have three pieces of info to report: node name,
> > customer name, and total data stored. The first two bits of data are
> > getting pulled out together and stored in one file. The third bit is being
> > calculated and then stored in a second file. I then get the data in like
> > this:
> >
> > NODES=`cat nodeinfo.txt | awk '{print $1}'`
> > CUSTOMER=`cat nodeinfo.txt | awk '{print $2}'`
> > MBTOTALS=`cat mbtotals.txt`
> >
> > I then need to print out a report like:
> >
> > Nodes Customer MB
> > ----------------------------------
> > node1 customer1 20.0
> >
> > How can I do this? I can't seem to figure out how to do it with one for
> > loop.
> >
> > I have another little script I am working on to report restore data and
> > it has one temp file holding all of the info I need and is greping out about
> > 10 different pieces of data I need before overwriting the temp file with the
> > info on the next node. The problem I have run into is that some of the
> > restores have duplicate data in them so I am going to have to rewrite the
> > report to put the data in variables and then loop through them to generate a
> > report just like the one above, except with more variables so you can see
> > why I am trying to figure out how to do this as cleanly as possible. Maybe
> > I am starting off all wrong so feel free to redirect me. Also, I am using
> > Korn shell to do this (my only option).
> >
> > Thanks!
> >
> > Michael French
> >
> > -
> > To unsubscribe from this list: send the line "unsubscribe linux-admin" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at http://vger.kernel.org/majordomo-info.html
> >
>
>
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Scripting question
2003-01-23 13:49 johnjulian1
@ 2003-01-24 2:30 ` Mikhail Romanenko
0 siblings, 0 replies; 11+ messages in thread
From: Mikhail Romanenko @ 2003-01-24 2:30 UTC (permalink / raw)
To: "Michael French", linux-admin
23.01.03 18:49:24, johnjulian1@netscape.net wrote:
[...]
>Korn shell supports arrays. You could pull your data in seperate arrays for node,
>cust and mb then do a loop on the array counter.
[...]
Not only Korn shell, bash (2.x) does it either.
liana:~$ bash --version
GNU bash, version 2.05b.0(1)-release (i386-pc-linux-gnu)
Copyright (C) 2002 Free Software Foundation, Inc.
liana:~$ man bash
[...]
Arrays
Bash provides one-dimensional array variables. Any variable may be
used as an array; the declare builtin will explicitly declare an
[...]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Scripting question
2003-01-24 0:50 ` rich+ml
@ 2003-01-24 2:34 ` Michael French
0 siblings, 0 replies; 11+ messages in thread
From: Michael French @ 2003-01-24 2:34 UTC (permalink / raw)
To: rich+ml; +Cc: linux-admin
Thanks for the help everyone, I was able to do it with John Julian's
while loop, worked like a champ!
Michael
In case you missed, here's the code:
i=0
while [ -n "$cust[$i]" ]
do print "$node[$i] $cust[$i] $mb[$i]
i=$(( i + 1 ))
done
----- Original Message -----
From: <rich+ml@lclogic.com>
To: "Michael French" <mfrench@ashevillemail.com>
Cc: <linux-admin@vger.kernel.org>
Sent: Thursday, January 23, 2003 4:50 PM
Subject: Re: Scripting question
> Oops, change the "$1,$2,$3" to "$@" == Rich
>
> On Thu, 23 Jan 2003 rich+ml@lclogic.com wrote:
>
> > Date: Thu, 23 Jan 2003 16:46:51 -0800 (PST)
> > From: rich+ml@lclogic.com
> > To: Michael French <mfrench@ashevillemail.com>
> > Cc: linux-admin@vger.kernel.org
> > Subject: Re: Scripting question
> >
> > Got Perl?
> > ---
> > #!/usr/bin/perl
> >
> > format STDOUT_TOP =
> > Nodes Customer MB
> > ----------------------------------
> > .
> >
> > format =
> > @<<<<<<<<<<< @<<<<<<<<<<<<<< @>>>>
> > $1,$2,$3
> > .
> >
> > (open A,$ARGV[0]) && (open B,$ARGV[1]) or die $!;
> > write while split ' ',<A>.<B>;
> > ---
> >
> > Invoke as one of:
> > script nodeinfo.txt mbtotals.txt
> > script - mbtotals.txt < nodeinfo.txt
> > script nodeinfo.txt - < mbtotals.txt
> >
> > == Rich
> >
> > On Wed, 22 Jan 2003, Michael French wrote:
> >
> > > Date: Wed, 22 Jan 2003 21:14:15 -0800
> > > From: Michael French <mfrench@ashevillemail.com>
> > > To: linux-admin@vger.kernel.org
> > > Subject: Scripting question
> > >
> > > I have a couple of scripts that I am working on that pull data
from an
> > > application and print a human readable report from the data. I have
all of
> > > the data pulled and stored in variables, but I am stumped on how to
put in
> > > all in one file. I hope that I can clearly explain this, here goes.
> > >
> > > For one script, I have three pieces of info to report: node name,
> > > customer name, and total data stored. The first two bits of data are
> > > getting pulled out together and stored in one file. The third bit is
being
> > > calculated and then stored in a second file. I then get the data in
like
> > > this:
> > >
> > > NODES=`cat nodeinfo.txt | awk '{print $1}'`
> > > CUSTOMER=`cat nodeinfo.txt | awk '{print $2}'`
> > > MBTOTALS=`cat mbtotals.txt`
> > >
> > > I then need to print out a report like:
> > >
> > > Nodes Customer MB
> > > ----------------------------------
> > > node1 customer1 20.0
> > >
> > > How can I do this? I can't seem to figure out how to do it with one
for
> > > loop.
> > >
> > > I have another little script I am working on to report restore
data and
> > > it has one temp file holding all of the info I need and is greping out
about
> > > 10 different pieces of data I need before overwriting the temp file
with the
> > > info on the next node. The problem I have run into is that some of
the
> > > restores have duplicate data in them so I am going to have to rewrite
the
> > > report to put the data in variables and then loop through them to
generate a
> > > report just like the one above, except with more variables so you can
see
> > > why I am trying to figure out how to do this as cleanly as possible.
Maybe
> > > I am starting off all wrong so feel free to redirect me. Also, I am
using
> > > Korn shell to do this (my only option).
> > >
> > > Thanks!
> > >
> > > Michael French
> > >
> > > -
> > > To unsubscribe from this list: send the line "unsubscribe linux-admin"
in
> > > the body of a message to majordomo@vger.kernel.org
> > > More majordomo info at http://vger.kernel.org/majordomo-info.html
> > >
> >
> >
> >
>
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Scripting Question
@ 2004-03-31 21:15 Scott@Charter
2004-03-31 22:08 ` Richard Nairn
0 siblings, 1 reply; 11+ messages in thread
From: Scott@Charter @ 2004-03-31 21:15 UTC (permalink / raw)
To: Linux-Admin-Group
[-- Attachment #1: Type: text/plain, Size: 459 bytes --]
Thanks for the answers everyone. Now I need to get a comparison between a
bash script and a Perl script. I know there probably is no comparison but
it will help me.
Can I get a short script, one in Perl and one in bash that, let's say,
prints the odd numbers between 1 and 10. That should be pretty short and
sweet. I don't know Perl, unfortunately. It's been a while since I
scripted bash too.
So please let me know.
Thanks Again.
Scott - Reno, NV
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Scott Smallsreed.vcf --]
[-- Type: text/x-vcard; name="Scott Smallsreed.vcf", Size: 366 bytes --]
BEGIN:VCARD
VERSION:2.1
N:Smallsreed;Scott
FN:Scott Smallsreed
TEL;HOME;VOICE:775-849-8411
TEL;HOME;FAX:775-849-8412
ADR;HOME:;;3030 Chipmunk Dr.;Washoe Valley;Nevada;89704;US
LABEL;HOME;ENCODING=QUOTED-PRINTABLE:3030 Chipmunk Dr.=0D=0AWashoe Valley, Nevada 89704=0D=0AUS
EMAIL;PREF;INTERNET:scott.smallsreed@mindspring.com
REV:20040331T211509Z
END:VCARD
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Scripting Question
2004-03-31 21:15 Scripting Question Scott@Charter
@ 2004-03-31 22:08 ` Richard Nairn
0 siblings, 0 replies; 11+ messages in thread
From: Richard Nairn @ 2004-03-31 22:08 UTC (permalink / raw)
To: Scott@Charter, Linux-Admin-Group
Scott, Why does it seem like we are doing homework for you? It doesn't
seem like you have done any research yourself... Maybe you can provide
some background to help you out.
On Wed, 31 Mar 2004 13:15:09 -0800, Scott@Charter
<scott.smallsreed@charter.net> wrote:
> Thanks for the answers everyone. Now I need to get a comparison between
> a
> bash script and a Perl script. I know there probably is no comparison
> but
> it will help me.
>
> Can I get a short script, one in Perl and one in bash that, let's say,
> prints the odd numbers between 1 and 10. That should be pretty short and
> sweet. I don't know Perl, unfortunately. It's been a while since I
> scripted bash too.
>
> So please let me know.
>
> Thanks Again.
> Scott - Reno, NV
--
| Richard Nairn Specializing in Linux
| Nairn Consulting Web / Database Solutions
| Calgary, AB
| Richard@NairnConsulting.ca
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2004-03-31 22:08 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-01-23 5:14 Scripting question Michael French
2003-01-23 5:32 ` Andrew B. Cramer
2003-01-23 7:40 ` urgrue
2003-01-23 8:38 ` Jude DaShiell
2003-01-24 0:46 ` rich+ml
2003-01-24 0:50 ` rich+ml
2003-01-24 2:34 ` Michael French
-- strict thread matches above, loose matches on Subject: below --
2003-01-23 13:49 johnjulian1
2003-01-24 2:30 ` Mikhail Romanenko
2004-03-31 21:15 Scripting Question Scott@Charter
2004-03-31 22:08 ` Richard Nairn
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).