From owner-freebsd-questions@FreeBSD.ORG Wed Jan 7 16:53:53 2015 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A717B839 for ; Wed, 7 Jan 2015 16:53:53 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F12166328 for ; Wed, 7 Jan 2015 16:53:53 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.9/8.14.9) with ESMTP id t07Grmb6012076 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 7 Jan 2015 09:53:49 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.9/8.14.9/Submit) with ESMTP id t07Grm4t012069; Wed, 7 Jan 2015 09:53:48 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Wed, 7 Jan 2015 09:53:48 -0700 (MST) From: Warren Block To: Ben Woods Subject: Re: Questions from a Linux refugee In-Reply-To: Message-ID: References: <20150106115503.4870ab2e@jive> <20150106132934.7b2ba08c.freebsd@edvax.de> <20150106124739.a336caccfdef65863f461f7c@milibyte.co.uk> <20150106163202.f07341af.freebsd@edvax.de> <20150107142315.27d077f3.freebsd@edvax.de> User-Agent: Alpine 2.11 (BSF 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Wed, 07 Jan 2015 09:53:49 -0700 (MST) Cc: Polytropon , "freebsd-questions@freebsd.org" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 16:53:53 -0000 On Wed, 7 Jan 2015, Ben Woods wrote: >>>> "make missing | pkg install" to get the dependencies >>> >>> This command doesn't work for me with pkgng 1.4.4 (I don't think the > pipe >>> to pkg works): >>> >>> # make missing | pkg install >>> Usage: pkg install [-AfInFMqRUy] [-r reponame] [-Cgix] ... >>> For more information see 'pkg help install'. >> >> The command is pseudo-code, I should have mentioned >> this explicitely. :-) > > > Well it can actually work if you use xargs: > # make missing | xargs pkg install Or backticks, probably: # pkg install `make missing`