From owner-freebsd-questions@freebsd.org Sun Sep 25 18:35:35 2016 Return-Path: Delivered-To: freebsd-questions@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6AE21BE93EB for ; Sun, 25 Sep 2016 18:35:35 +0000 (UTC) (envelope-from mfv@bway.net) Received: from smtp2.bway.net (smtp2.v6.bway.net [IPv6:2607:d300:1::28]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4B36E9AD for ; Sun, 25 Sep 2016 18:35:35 +0000 (UTC) (envelope-from mfv@bway.net) Received: from gecko4 (host-216-220-115-71.dsl.bway.net [216.220.115.71]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: m1316v@bway.net) by smtp2.bway.net (Postfix) with ESMTPSA id 04C4295868; Sun, 25 Sep 2016 14:35:24 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=bway.net; s=mail; t=1474828525; bh=GlPuGqnZ0umsjFd354Ugfr9ABejgodlQ0zYMU69/Emw=; h=Date:From:To:Cc:Subject:In-Reply-To:References:Reply-To; b=MwkRoV+jFPGRqzzJDNqvpXVSfWkjeHXRHiO77HqY68bYHGXUvFfWSrjIRMz7+f7gk lbNBhy1Idb7lkJ8KN1iWZ5lJqQULeY9MHpqfjoVhQeOn05yc4FEOOo3Wov7trRCBcx 2mCjQ45cIJADxZg3ogfgFl170GMzScAY8QQtCIVs= Date: Sun, 25 Sep 2016 14:35:24 -0400 From: mfv To: Ernie Luzar Cc: Freebsd Questions Subject: Re: How to find port name to use with the pkg install command Message-ID: <20160925143524.2e2ce41d@gecko4> In-Reply-To: <57E51A69.9030602@gmail.com> References: <57E51A69.9030602@gmail.com> Reply-To: mfv@bway.net MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Sep 2016 18:35:35 -0000 > On Fri, 2016-09-23 at 08:04 Ernie Luzar wrote: > >Hello list, > >I am having trouble finding the port name to use with the "pkg >install" command. I used to use the ports web site > >https://www.freebsd.org/cgi/ports.cgi > >It used to show the svn port names and now it shows the port version >names. How is a person to find the svn port name? >_______________________________________________ >freebsd-questions@freebsd.org mailing list >https://lists.freebsd.org/mailman/listinfo/freebsd-questions >To unsubscribe, send any mail to >"freebsd-questions-unsubscribe@freebsd.org" Hello Ernie, Perhaps 'pkg search ' will work. will also match substrings. For example, 'pkg search groff' will match two packages: groff-1.22.2_4 Software typesetting package ja-groff-1.18.1_16 Japanese enhancement of GNU groff and 'pkg search -o groff' will show the origin: textproc/groff Software typesetting package japanese/groff Japanese enhancement of GNU grof See 'man pkg-search' for additional options. Cheers ... Marek