From owner-freebsd-questions@FreeBSD.ORG Thu Sep 29 17:14:00 2005 Return-Path: X-Original-To: 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 8DE7016A41F for ; Thu, 29 Sep 2005 17:14:00 +0000 (GMT) (envelope-from sequethin@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id D859D43D58 for ; Thu, 29 Sep 2005 17:13:59 +0000 (GMT) (envelope-from sequethin@gmail.com) Received: by wproxy.gmail.com with SMTP id i21so76964wra for ; Thu, 29 Sep 2005 10:13:57 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=YJTmKbIU5t1rDGwxI/w5wS/A8DEYUvYrtXuMjnh4KaZpIlK4R52oUFLgfb1MUpwx9reI8Uz9cqu4GEA45jenJ4u2hsYPfS5wBUDDoF3fLqZTIMUW6vtcd5SrAVR9Mbex3ExWaKFy/XyKRPHYjnzwYEaPw1Hw6VKY9rwoYlguPUE= Received: by 10.54.126.19 with SMTP id y19mr577438wrc; Thu, 29 Sep 2005 10:13:57 -0700 (PDT) Received: by 10.54.67.19 with HTTP; Thu, 29 Sep 2005 10:13:57 -0700 (PDT) Message-ID: <3060c23905092910131ad91b25@mail.gmail.com> Date: Thu, 29 Sep 2005 13:13:57 -0400 From: Mike Hernandez To: questions@freebsd.org In-Reply-To: <3.0.5.32.20050929092731.013ef6b0@gv.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <3.0.5.32.20050929092731.013ef6b0@gv.net> Cc: Subject: Re: long ftp dir listings X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mike Hernandez List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Sep 2005 17:14:00 -0000 On 9/29/05, David wrote: > Dear list, > > I am often annoyed trying to get a long directory listing from my unix bo= x > while ftp'ing somewhere. is hardly useful, since the listing goes > by to quickly. Occasionally, I have found a site that uses |more , but th= is > is unusual. I often resort to using ftp in Windows DOS mode so I can scro= ll > up a long listing. Any good methods would be appreciated. I use zsh's built in ftp. It's as simple as this (assuming zsh is installe= d): #[probably put this in .zshrc] zmodload zsh/zftp autoload -U zfinit zfinit zfopen ftp.whatever.foo [user & pass when prompted] zfcd pub/example/test/etc zfls|less The real beauty of it is that you can use all of zsh's expansions and the ftp stuff sits in the background while you use your shell. For more info man zshzftpsys Good luck :) Mike