From owner-freebsd-questions@FreeBSD.ORG Mon Jun 13 09:54:01 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1928A16A41C for ; Mon, 13 Jun 2005 09:54:01 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from kane.otenet.gr (kane.otenet.gr [195.170.0.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6150A43D55 for ; Mon, 13 Jun 2005 09:53:59 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from orion.daedalusnetworks.priv (aris.bedc.ondsl.gr [62.103.39.226]) by kane.otenet.gr (8.13.4/8.13.4/Debian-1) with SMTP id j5D9rsls014513; Mon, 13 Jun 2005 12:53:54 +0300 Received: from orion.daedalusnetworks.priv (orion [127.0.0.1]) by orion.daedalusnetworks.priv (8.13.4/8.13.4) with ESMTP id j5D9rsm3083781; Mon, 13 Jun 2005 12:53:54 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by orion.daedalusnetworks.priv (8.13.4/8.13.4/Submit) id j5D9rsuf083780; Mon, 13 Jun 2005 12:53:54 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Mon, 13 Jun 2005 12:53:54 +0300 From: Giorgos Keramidas To: Denny White Message-ID: <20050613095353.GA83736@orion.daedalusnetworks.priv> References: <20050613043134.X1869@dualman.cableone.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050613043134.X1869@dualman.cableone.net> Cc: freebsd-questions@freebsd.org Subject: Re: problem updating src 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, 13 Jun 2005 09:54:01 -0000 On 2005-06-13 04:41, Denny White wrote: > Been using The Complete FreeBSD & doing okay until I tried using the > following example to update /usr/src: > > cd /usr > cvs co -r RELENG_5_4 src 2>&1 | tee /var/tmp/co.log > > I get this: > > Ambiguous output redirect You're using the wrong shell. The 2>&1 redirection for standard error messages works fine in /bin/sh and its derivatives. It doesn't in csh. Run the command shown above in /bin/sh or Bash and everything should work as expected. - Giorgos