Re: /usr/src/linux/Documentation/Changes

Matthew D. Pitts (mpitts@suite224.net)
Tue, 6 Apr 1999 22:22:06 -0400


This is a multi-part message in MIME format.

------=_NextPart_000_01BE807B.E773A0C0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

Here you go.

----------
> From: linux phreak <computer_phreak_99@yahoo.com>
> To: Matthew D. Pitts <mpitts@suite224.net>;
alex.buell@tahallah.demon.co.uk; Riley Williams <rhw@BigFoot.Com>
> Cc: Linux kernel <linux-kernel@vger.rutgers.edu>
> Subject: Re: /usr/src/linux/Documentation/Changes
> Date: Tuesday, April 06, 1999 10:03 PM
>
> As to coverting RPMS to tarballs...
>
> <snip>
> >
> > Um, didn't someone post a script to convert them to
> > tarballs?
> >
> > Matthew D. Pitts
> > mpitts@suite224.net
> >
>
> If anyone still has this script, please repost.
>
> Thanks,
> cp
>
> _________________________________________________________
> Do You Yahoo!?
> Get your free @yahoo.com address at http://mail.yahoo.com
Matthew
mpitts@suite224.net
------=_NextPart_000_01BE807B.E773A0C0
Content-Type: application/octet-stream; name="unrpm.pl"
Content-Transfer-Encoding: 7bit
Content-Description: unrpm.pl (PL File)
Content-Disposition: attachment; filename="unrpm.pl"

#! /usr/local/bin/perl -w
use strict;

my $pre = 1;
my ($buf, $x);
while (defined ($x = read(STDIN, $buf, 4096)) && $x > 0) {
if ($pre && ($x = index($buf, "\037\213")) != -1) {
$buf = substr($buf, $x);
$pre = 0;
}
print $buf unless $pre;
}

------=_NextPart_000_01BE807B.E773A0C0--

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/