From owner-freebsd-questions@FreeBSD.ORG Thu Jul 14 08:02:47 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 62D5816A41C for ; Thu, 14 Jul 2005 08:02:47 +0000 (GMT) (envelope-from dan@malaby.com) Received: from mail.uemsvc.net (bl.metron.com [192.160.193.107]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1815943D46 for ; Thu, 14 Jul 2005 08:02:44 +0000 (GMT) (envelope-from dan@malaby.com) Received: from [192.168.18.10] (tc-27.eugene.epud.net [12.108.30.27]) (authenticated bits=0) by mail.uemsvc.net (8.13.4/8.12.6) with ESMTP id j6E1kdYp059457 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 13 Jul 2005 18:46:43 -0700 (PDT) (envelope-from dan@malaby.com) Message-ID: <42D5C3FF.8070004@malaby.com> Date: Wed, 13 Jul 2005 18:46:39 -0700 From: Daniel Malaby User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: using -t option with unix sort ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dan@malaby.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jul 2005 08:02:47 -0000 Hi All, I am trying to sort a tab delimited file with sort. The problem I am having is with the -t option. I do not know how to pass a tab. Things I have tried: sort -t \t sort -t '\t' sort -t "\t" sort -t 0x09 sort -t '0x09' sort -t "0x09" sort -t ^I sort -t '^I' sort -t "^I" Any suggestions would be much appreciated. Thanks