From owner-freebsd-questions@FreeBSD.ORG Wed Jan 7 13:26:44 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 DB85B88A for ; Wed, 7 Jan 2015 13:26:44 +0000 (UTC) Received: from mail-wg0-x235.google.com (mail-wg0-x235.google.com [IPv6:2a00:1450:400c:c00::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6C27166FFF for ; Wed, 7 Jan 2015 13:26:44 +0000 (UTC) Received: by mail-wg0-f53.google.com with SMTP id x13so1178945wgg.12 for ; Wed, 07 Jan 2015 05:26:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=GOfVuIqWK4//uV8qd8+MxnMR7stc/pPydPEI2U2cLB0=; b=UbR4HYI8+Azs26y9X9SHaIZCniL0tG9hz9wZCfM+6dQMc/XerTZfK91GaVNau2L86t fwATHbbpu6B2t6hVyDuyz3KP7OygJuCoDd2f0L9Hz889PQZWjZGGmLsKF53k21dwnHCy tVwmUQpaZUbdqxrGORw+3tV1g/tOm7aJ5RXegfiewwJSAmlrGJv8zTnIGxWtW1yw5Opp 2uwS3PXKYvkF70HGhOk3Q0oOg/jriizvWp7F6Z4b7hiHgVBNFmJRT1vCJw6TCbmViGT7 YGALhJEeM0ivLw7GB+TimjU5DKiegcxlTxaAUznD+jnmxAhujl/t6la+qOVd5g4WREox +ugQ== MIME-Version: 1.0 X-Received: by 10.194.193.4 with SMTP id hk4mr6578299wjc.38.1420637202731; Wed, 07 Jan 2015 05:26:42 -0800 (PST) Received: by 10.194.241.132 with HTTP; Wed, 7 Jan 2015 05:26:42 -0800 (PST) In-Reply-To: <20150107142315.27d077f3.freebsd@edvax.de> References: <20150106115503.4870ab2e@jive> <20150106132934.7b2ba08c.freebsd@edvax.de> <20150106124739.a336caccfdef65863f461f7c@milibyte.co.uk> <20150106163202.f07341af.freebsd@edvax.de> <20150107142315.27d077f3.freebsd@edvax.de> Date: Wed, 7 Jan 2015 21:26:42 +0800 Message-ID: Subject: Re: Questions from a Linux refugee From: Ben Woods To: Polytropon Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: "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 13:26:44 -0000 > > > "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 -- From: Benjamin Woods woodsb02@gmail.com