From owner-freebsd-doc@FreeBSD.ORG Thu Nov 20 17:02:58 2014 Return-Path: Delivered-To: freebsd-doc@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 9916B3CC for ; Thu, 20 Nov 2014 17:02:58 +0000 (UTC) Received: from mail-pd0-x234.google.com (mail-pd0-x234.google.com [IPv6:2607:f8b0:400e:c02::234]) (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 6F80E823 for ; Thu, 20 Nov 2014 17:02:58 +0000 (UTC) Received: by mail-pd0-f180.google.com with SMTP id p10so3417099pdj.11 for ; Thu, 20 Nov 2014 09:02:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:from:to:mime-version:content-transfer-encoding :content-type:subject:date; bh=24+yakWpanzFNlKfoHgTRZzDarehbOrJZHpkif0Y1S0=; b=mgw0Zwv8HPq1r7Sw/9TQtIVK3eFqc5uOzNCIpXKDUbezSVFg12G7vxRMrDNUtG8Idx Ovn4uA39oIUUrkBihostZKkCZoZjcdgU4lQ1UR+tS/4qrmmgpc1ijBJR6B0jSdiMHmux bGcMcTsM7ORxveS5s9tvpdswe4R6WPzEdR3WfP92CZQYQxIJpEQ0gEjLZzWCuoXDYgty FYzO9SWxrnpaoObR7g47oJVzNf5SQV1O5GQTE/IO+Vz0sExMvVtwQAaDdRGdbuaXignk HVNZ8HjwMq38WYG7e38L/aeVA0u8X6kCqIUr74FghuTLz7jTmMib4eCfhRJZwpIRF9B0 p7rQ== X-Received: by 10.68.57.199 with SMTP id k7mr3957915pbq.25.1416502977832; Thu, 20 Nov 2014 09:02:57 -0800 (PST) Received: from auth2-smtp.messagingengine.com (auth2-smtp.messagingengine.com. [66.111.4.228]) by mx.google.com with ESMTPSA id nc9sm2528131pbc.55.2014.11.20.09.02.55 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 20 Nov 2014 09:02:56 -0800 (PST) Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailauth.nyi.internal (Postfix) with ESMTP id BF027209E4 for ; Thu, 20 Nov 2014 12:02:50 -0500 (EST) Received: from web6 ([10.202.2.216]) by compute5.internal (MEProxy); Thu, 20 Nov 2014 12:02:50 -0500 Received: by web6.nyi.internal (Postfix, from userid 99) id 910AB460CB; Thu, 20 Nov 2014 12:02:50 -0500 (EST) Message-Id: <1416502970.1409926.193424285.33ED1868@webmail.messagingengine.com> X-Sasl-Enc: pBdeS9s/PD0gVQeDr/krn+yeRv/UaUGaFuWQqLm9J5cj 1416502970 From: "David O'Rourke" To: freebsd-doc@FreeBSD.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain X-Mailer: MessagingEngine.com Webmail Interface - ajax-a419c8a0 Subject: Broken command in section 15.3 of the FreeBSD Handbook Date: Thu, 20 Nov 2014 17:02:50 +0000 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Nov 2014 17:02:58 -0000 Hi, I was reading section 15.3 of the FreeBSD handbook (https://www.freebsd.org/doc/handbook/jails-build.html) and it seems that the command under the line > When using sh(1) on FreeBSD 9.x and newer, issue this command: is missing a little something. It currently says > # for sets in BASE DOC GAMES PORTS; do (tar -xf /mnt/FREEBSD_INSTALL/USR/FREEBSD_DIST/$sets.TXZ -C $DESTDIR I believe it should say: > # for sets in BASE DOC GAMES PORTS; do (tar -xf /mnt/FREEBSD_INSTALL/USR/FREEBSD_DIST/$sets.TXZ -C $DESTDIR) ; done Regards, -- -David