Skip site navigation (1)Skip section navigation (2)
Date:      11 Dec 1998 15:25:29 +0100
From:      Dag-Erling Smorgrav <des@flood.ping.uio.no>
To:        "Jordan K. Hubbard" <jkh@zippy.cdrom.com>
Cc:        obrien@NUXI.com, Greg Lehey <grog@lemis.com>, committers@hub.freebsd.org
Subject:   Re: Swat teams (was: problem reports)
Message-ID:  <xzp67bi3gdi.fsf@flood.ping.uio.no>
In-Reply-To: "Jordan K. Hubbard"'s message of "Thu, 10 Dec 1998 18:03:45 -0800"
References:  <2149.913341825@zippy.cdrom.com>

next in thread | previous in thread | raw e-mail | index | archive | help
"Jordan K. Hubbard" <jkh@zippy.cdrom.com> writes:
> > Is there a remote way to browse and `edit-pr'?
> If there is, I don't know it.

There's a Perl script floating around that would allow one to retrieve
PRs through finger:

#!/usr/local/bin/perl5

$FINGER = "/usr/bin/finger";
$QUERYPR = "/usr/local/bin/query-pr";

$_ = $ARGV[0];

if (m/^(pr)?[0-9]+$/) {
    s/^pr//;
    { exec $QUERYPR, "-F", $_; }
    print "query-pr failed\n";
    exit(1);
}

{ exec $FINGER, $_; }
print "finger failed\n";
exit(1);

DES
-- 
Dag-Erling Smorgrav - des@flood.ping.uio.no

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?xzp67bi3gdi.fsf>