From owner-freebsd-questions@FreeBSD.ORG Thu Dec 21 22:26:11 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B263116A407 for ; Thu, 21 Dec 2006 22:26:11 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.freebsd.org (Postfix) with ESMTP id 451E313C458 for ; Thu, 21 Dec 2006 22:26:11 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: by ug-out-1314.google.com with SMTP id o2so2409487uge for ; Thu, 21 Dec 2006 14:26:09 -0800 (PST) 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=a4kLs53VWRwknb7BeYlvWjQY+vE5pLnl+vS77Halj7eIOMz5zNZ6MsiQCZdPUk2o4OV2OuiKxX03gyZxff/Xmy2uW7aP0qVy0ffT4zg2VRVGB+uaypfUPR9srfeUKw1Zt6lJBWVwbyRgdYwzFN9VJGOfrqZdkI1hgp9gT5pdMnk= Received: by 10.82.113.6 with SMTP id l6mr2004536buc.1166733605669; Thu, 21 Dec 2006 12:40:05 -0800 (PST) Received: by 10.82.163.16 with HTTP; Thu, 21 Dec 2006 12:40:05 -0800 (PST) Message-ID: <8cb6106e0612211240y66171b0dp5bd1182da5cb50d3@mail.gmail.com> Date: Thu, 21 Dec 2006 15:40:05 -0500 From: "Josh Carroll" To: freebsd-questions@freebsd.org In-Reply-To: <20061221194409.GA1515@host.my.domain> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20061219195359.GA34750@host.my.domain> <20061221184535.GB40028@dan.emsphone.com> <20061221194409.GA1515@host.my.domain> Subject: Re: Is there UNIX analog of ftp command pls? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: josh.carroll@psualum.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Dec 2006 22:26:11 -0000 > pls directory > > will give > > ls -l | less directory > > which is not what one want. Try the following: bourne shells: alias pls='ls $* | less' or for csh/tcsh: alias pls 'ls $* | less' Thanks, Josh