From owner-freebsd-questions@FreeBSD.ORG Mon Aug 23 14:25:28 2004 Return-Path: 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 EA9E216A4CE for ; Mon, 23 Aug 2004 14:25:28 +0000 (GMT) Received: from aiolos.otenet.gr (aiolos.otenet.gr [195.170.0.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4456043D5C for ; Mon, 23 Aug 2004 14:25:27 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.gr (patr530-b187.otenet.gr [212.205.244.195]) i7NEPJxr030117; Mon, 23 Aug 2004 17:25:21 +0300 Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.13.1/8.13.1) with ESMTP id i7NENtcl003646; Mon, 23 Aug 2004 17:23:55 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.gr (8.13.1/8.13.1/Submit) id i7NENsKq003645; Mon, 23 Aug 2004 17:23:54 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Mon, 23 Aug 2004 17:23:54 +0300 From: Giorgos Keramidas To: Bill Schoolcraft Message-ID: <20040823142354.GA3605@gothmog.gr> References: <20040823141605.87571.qmail@web90010.mail.scd.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040823141605.87571.qmail@web90010.mail.scd.yahoo.com> Phone: +30-2610-312145 Mobile: +30-6944-116520 cc: questions@freebsd.org Subject: Re: how to view .ascii file? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 14:25:29 -0000 On 2004-08-23 07:16, Bill Schoolcraft wrote: > Hmm, > > Would using the command: zcat work? If the file isn't really compressed you can always use just less(1) on it: % less filename.ascii If it is compressed (as the docs of /usr/share/doc usually are), I tend to prefer something from the commands shown below: % zmore filename.ascii.gz % zcat filename.ascii.gz | less % gzip -cd filename.ascii.gz | less All these are roughly equivalent to each other.