From owner-freebsd-hackers@FreeBSD.ORG Thu May 10 18:02:28 2012 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B880106566C for ; Thu, 10 May 2012 18:02:28 +0000 (UTC) (envelope-from dieterbsd@engineer.com) Received: from mailout-us.gmx.com (mailout-us.gmx.com [74.208.5.67]) by mx1.freebsd.org (Postfix) with SMTP id CE2D08FC14 for ; Thu, 10 May 2012 18:02:27 +0000 (UTC) Received: (qmail 32284 invoked by uid 0); 10 May 2012 18:02:24 -0000 Received: from 67.206.185.81 by rms-us012.v300.gmx.net with HTTP Content-Type: text/plain; charset="utf-8" Date: Thu, 10 May 2012 14:02:22 -0400 From: "Dieter BSD" Message-ID: <20120510180223.153800@gmx.com> MIME-Version: 1.0 To: freebsd-hackers@freebsd.org X-Authenticated: #74169980 X-Flags: 0001 X-Mailer: GMX.com Web Mailer x-registered: 0 Content-Transfer-Encoding: 8bit X-GMX-UID: +Gfeb3Bd3zOlNR3dAHAhYBZ+IGRvbwAV Subject: Re: csh builtin command problems X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 May 2012 18:02:28 -0000 Robert writes: > I want this: > > # echo test\ttest > test > # cat test > test    test I have given up on using echo for anything the least bit fancy, in favor of printf(1) which gives much better control. printf "test\ttest\n"