Re: Libranet - Free Trial

2004-04-07 Thread Derek Martin
On Wed, Apr 07, 2004 at 11:39:47AM -0400, Travis Roy wrote: > Sorry to top post, but what I was pointing out was charging for things > like Libranet or the newest SuSE, not so much with *BSD, I know the BSD > license is different. Libranet can charge whatever they want to distribute their binari

portable digital music players

2004-04-07 Thread Derek Martin
Since recently I have some extra money in my pocket, I'm interested in buying some sort of portable music player. My criteria are these: 1) MUST play both MP3 and OGG formats, since I have a substantial amount of both, and no current physical access to my source material in order to re-rip

Re: extract all text lines between 2 lines in a file?

2004-04-07 Thread Tom Buskey
> On Wed, Apr 07, 2004 at 03:05:52PM -0400, Tom Buskey <[EMAIL PROTECTED]> > wrote: >> sed '0,/^uniqdelimiter/d' -e '/^uniqdelimter/d' file > > Odd, doesn't seem to be working for me. Because I made a mistake. *sigh* I'm having ne of those days when you're afraid to do rm -rf . w/o checking whi

Re: extract all text lines between 2 lines in a file?

2004-04-07 Thread Bob Bell
On Wed, Apr 07, 2004 at 03:05:52PM -0400, Tom Buskey <[EMAIL PROTECTED]> wrote: > #!/bin/sh > > command1 > command2 > uniqdelimiter > command3 > command4 > uniqdelimiter > command5 > > I want to filter it and get: > command3 > command4 > > In other words, everything between the lines that say "uniq

Re: extract all text lines between 2 lines in a file?

2004-04-07 Thread Tom Buskey
> Oops, sorry about last post > I have a file: Haha on the comments ;-) /me blames using squirrelmail and hitting tab then return > #!/bin/sh > > command1 > command2 > uniqdelimiter > command3 > command4 > uniqdelimiter > command5 > > I want to filter it and get: > command3 > command4 > > In

Re: extract all text lines between 2 lines in a file?

2004-04-07 Thread Ben Boulanger
perl -e 'open (JUNK, "junk"); while () { if (/uniqdelimiter/) { if ($value) { $value = 0; } else { $value = 1; } } (print $_) if $value; } }' or.. in a script: #!/usr/bin/perl -w use strict; my $file = $ARGV[0]; my $value = 0; open(FILE, "$file"); while () { if (/uniqdelimiter/) {

Re: extract all text lines between 2 lines in a file?

2004-04-07 Thread Travis Roy
I have a file: Would you care to share the file with us? Or are you just bragging because you have a file? ;-) It's marked "TOP SECRET" so I guess I can't... Sorry ___ gnhlug-discuss mailing list [EMAIL PROTECTED] http://mail.gnhlug.org/mailman/listinfo

Re: extract all text lines between 2 lines in a file?

2004-04-07 Thread Michael ODonnell
Here's one approach: sed -e '/^uniqdelimiter$/,/^uniqdelimiter$/p' -e d | sed -e 1d -e '$d' ___ gnhlug-discuss mailing list [EMAIL PROTECTED] http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss

Re: extract all text lines between 2 lines in a file?

2004-04-07 Thread Kenneth E. Lussier
On Wed, 2004-04-07 at 14:31, Tom Buskey wrote: > I have a file: > Would you care to share the file with us? Or are you just bragging because you have a file? ;-) C-Ya, Kenny signature.asc Description: This is a digitally signed message part

Re: extract all text lines between 2 lines in a file?

2004-04-07 Thread Travis Roy
Tom Buskey wrote: I have a file: You don't say :) ___ gnhlug-discuss mailing list [EMAIL PROTECTED] http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss

extract all text lines between 2 lines in a file?

2004-04-07 Thread Tom Buskey
Oops, sorry about last post I have a file: #!/bin/sh command1 command2 uniqdelimiter command3 command4 uniqdelimiter command5 I want to filter it and get: command3 command4 In other words, everything between the lines that say "uniqdelimter". This will do it: sed '0,/^uniqdelimiter/d' file

extract all text lines between 2 lines in a file?

2004-04-07 Thread Tom Buskey
I have a file: ___ gnhlug-discuss mailing list [EMAIL PROTECTED] http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss

Re: Libranet - Free Trial

2004-04-07 Thread Travis Roy
Sorry to top post, but what I was pointing out was charging for things like Libranet or the newest SuSE, not so much with *BSD, I know the BSD license is different. Tom Buskey wrote: Does Libranet contain proprietary software? It sounds like it is just Debian with a particular mix of their dev

Re: Libranet - Free Trial

2004-04-07 Thread Tom Buskey
>>>Does Libranet contain proprietary software? It sounds like it is just >>> Debian with a particular mix of their development branches. If so, >>> the software is all GPL- or OSS-licenced, and can be copied freely. >> >> >> Not necessarily. OpenBSD can be copied freely but the CD layout is >> c

Re: Libranet - Free Trial

2004-04-07 Thread Travis Roy
Does Libranet contain proprietary software? It sounds like it is just Debian with a particular mix of their development branches. If so, the software is all GPL- or OSS-licenced, and can be copied freely. Not necessarily. OpenBSD can be copied freely but the CD layout is copyrighted by Theo to

Re: Libranet - Free Trial

2004-04-07 Thread Tom Buskey
> Does Libranet contain proprietary software? It sounds like it is just > Debian with a particular mix of their development branches. If so, the > software is all GPL- or OSS-licenced, and can be copied freely. Not necessarily. OpenBSD can be copied freely but the CD layout is copyrighted by Th