From owner-freebsd-hackers@FreeBSD.ORG Thu May 10 01:34:12 2012 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C6659106564A for ; Thu, 10 May 2012 01:34:12 +0000 (UTC) (envelope-from rsimmons0@gmail.com) Received: from mail-vb0-f54.google.com (mail-vb0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id 849F28FC0A for ; Thu, 10 May 2012 01:34:12 +0000 (UTC) Received: by vbmv11 with SMTP id v11so1361648vbm.13 for ; Wed, 09 May 2012 18:34:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=DLU5h6t3w5+JJGITMTLusWdacM9A2BycjRkwzLjS0NA=; b=TFUDbPgDINFKaRnV7FSRb7ROKqUdt5jDh1XCP/OMIKDMd6X+tURNLB8RWVR1QnlITS Nf1jFpqF0Zafp+mXMWd80FXkbI/T9pSs09RzpmbioXhsvf/4dyWqvj3nBByFH+S2UMJA Jh+dZ8tnCpT8EPjf7MSs+FwIE2/ihVp7FI18rFAOPhJWYbxURKWHM8FFB+vODaE4W6cy IIB2fFx++ooSY9ALiV3zpF+9M2ClRsh/tviHQ6R8/zEia/2O9brWO30PY/W3Gx/NsiE0 WJsXtOiWeC1EyPD/bKcmgttZiDmmYg9ZWGyW03BW7KSAXxK4ZBGYH6t0SrkE7Lp3578R sFCw== MIME-Version: 1.0 Received: by 10.220.39.197 with SMTP id h5mr248175vce.51.1336613651883; Wed, 09 May 2012 18:34:11 -0700 (PDT) Received: by 10.52.112.167 with HTTP; Wed, 9 May 2012 18:34:11 -0700 (PDT) Date: Wed, 9 May 2012 21:34:11 -0400 Message-ID: From: Robert Simmons To: freebsd-hackers@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Subject: 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 01:34:12 -0000 I'm trying to use sysv style echo in /bin/csh and I've hit a wall as to how to get it to work. The following does not have the outcome that I'm looking for: # echo_style=sysv # echo test\ttest > test # cat test testttest I want this: # echo test\ttest > test # cat test test test Any thoughts?