From owner-freebsd-questions@FreeBSD.ORG Mon Jan 26 12:58:56 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 01E801065673 for ; Mon, 26 Jan 2009 12:58:56 +0000 (UTC) (envelope-from h.skuhra@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.227]) by mx1.freebsd.org (Postfix) with ESMTP id C1F718FC1F for ; Mon, 26 Jan 2009 12:58:55 +0000 (UTC) (envelope-from h.skuhra@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so5953196rvf.43 for ; Mon, 26 Jan 2009 04:58:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=Cc+GY5o4GikLuNkubFSaN0KurcSvirAPFbn0jKaVSQQ=; b=SfMbYMoJTQhdd0w16INUTRJSWlFJtQRolrGXb1Xc28RBxoko8X/KsVuPq5XGNPRhL/ rad2Y1psPGZ0AhWrpaCsQ5RbFbHfBye/HgQT99OA0HoBZWSeMuIYU1vrs8T6iORmbjnZ qlcHTknBTuKcaOiigVXToOSpyKao96OFae0hM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=dUUnLV0ukMy3rNkUAmfjeF5gl61neSuriL+57UiWdTsaCRPG2IwH0xiGXE/LiqBQR9 yWQcGFsZTKqwXeZLGD3+Z2TEIGYdszLjp7hpcKHJbiff6LGg7xFFsZWAOMlweHt0yPgu qkgII9vzx9c0laOoP1gqmn0fdSEIx2SQYhhNw= MIME-Version: 1.0 Received: by 10.141.101.16 with SMTP id d16mr6822275rvm.277.1232974735474; Mon, 26 Jan 2009 04:58:55 -0800 (PST) In-Reply-To: <9a52b1190901260442i5c268754xb46e6e9f64127076@mail.gmail.com> References: <9a52b1190901260442i5c268754xb46e6e9f64127076@mail.gmail.com> Date: Mon, 26 Jan 2009 13:58:55 +0100 Message-ID: From: "Herbert J. Skuhra" To: freebsd-questions Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Re: how to install all p5-* one shot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jan 2009 12:58:56 -0000 2009/1/26 Saifi Khan : > Hi all: > > There are many PERL packages in ports whose names are prefixed with p5-* . > > How does one install all the p5-* packages one shot ? > > Is there a way one can do it with the options available in ports > or does one need to write a script to locate all the dir names > starting with p5-* ? > > Any pointer in this direction will be appreciated. % cd /usr/ports % find . -name "p5\-*" | wc -l 3360 Good idea? Then try: % sudo portmaster -i */p5\-* - Herbert