From owner-cvs-all Fri Dec 11 06:25:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA11015 for cvs-all-outgoing; Fri, 11 Dec 1998 06:25:58 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA11008 for ; Fri, 11 Dec 1998 06:25:52 -0800 (PST) (envelope-from des@flood.ping.uio.no) Received: (from des@localhost) by flood.ping.uio.no (8.9.1/8.9.1) id PAA37678; Fri, 11 Dec 1998 15:25:30 +0100 (CET) (envelope-from des) To: "Jordan K. Hubbard" Cc: obrien@NUXI.com, Greg Lehey , committers@hub.freebsd.org Subject: Re: Swat teams (was: problem reports) References: <2149.913341825@zippy.cdrom.com> From: Dag-Erling Smorgrav Date: 11 Dec 1998 15:25:29 +0100 In-Reply-To: "Jordan K. Hubbard"'s message of "Thu, 10 Dec 1998 18:03:45 -0800" Message-ID: Lines: 28 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk "Jordan K. Hubbard" 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