From owner-freebsd-questions@FreeBSD.ORG Tue Apr 8 11:14:32 2003 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 76BEA37B401 for ; Tue, 8 Apr 2003 11:14:32 -0700 (PDT) Received: from hotmail.com (dav29.sea1.hotmail.com [207.68.162.86]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7B8443FBD for ; Tue, 8 Apr 2003 11:14:31 -0700 (PDT) (envelope-from kenzo_chin@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 8 Apr 2003 11:14:31 -0700 Received: from 209.187.233.156 by dav29.sea1.hotmail.com with DAV; Tue, 08 Apr 2003 18:14:31 +0000 X-Originating-IP: [209.187.233.156] X-Originating-Email: [kenzo_chin@hotmail.com] From: "Kenzo" To: References: <20030408143638.U57177-100000@cactus.fi.uba.ar> Date: Tue, 8 Apr 2003 13:14:31 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Message-ID: X-OriginalArrivalTime: 08 Apr 2003 18:14:31.0642 (UTC) FILETIME=[B39653A0:01C2FDFA] Subject: Re: gunzip question 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: Tue, 08 Apr 2003 18:14:32 -0000 Thanks. that's what I was looking for. ----- Original Message ----- From: "Fernando Gleiser" To: "Kenzo" Cc: Sent: Tuesday, April 08, 2003 12:37 PM Subject: Re: gunzip question > On Tue, 8 Apr 2003, Kenzo wrote: > > > I want to be able to search within a gzip file without having to uncompress > > it. > > say I have a file name one.gz I want to not only view the content but to > > search in it. > > if I do " gunzip -c one.gz | more " it will display the content, but not > > give me the option to search. > > Is there a way to do that? > > gzcat one.gz | less > > > Fer > >