Re: Is there UNIX analog of ftp command pls?

2006-12-22 Thread Garrett Cooper
[EMAIL PROTECTED] wrote: On Thu, Dec 21, 2006 at 12:45:35PM -0600, Dan Nelson wrote: In the last episode (Dec 19), [EMAIL PROTECTED] said: Is there UNIX analog of ftp command pls, i. e. ls | less ? Yes, "ls | less" is the way to do it. You can add a shell alias

Re: Is there UNIX analog of ftp command pls?

2006-12-22 Thread a
On Thu, Dec 21, 2006 at 02:42:37PM -0600, Dan Nelson wrote: > In the last episode (Dec 21), [EMAIL PROTECTED] said: > > On Thu, Dec 21, 2006 at 12:45:35PM -0600, Dan Nelson wrote: > > > In the last episode (Dec 19), [EMAIL PROTECTED] said: > > > > Is there UNIX analo

Re: Is there UNIX analog of ftp command pls?

2006-12-21 Thread Josh Carroll
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 ___ freebsd-questions@freebsd.org mailing list http://lis

Re: Is there UNIX analog of ftp command pls?

2006-12-21 Thread Warren Block
On Thu, 21 Dec 2006, Eric Kjeldergaard wrote: To find the answer to this, you need only look at both of those solutions and combine them. For instance... alias pls="ls -l $@ | less" The csh/tcsh equivalent is alias pls 'ls -l \!* | less' -Warren Block * Rapid City, South Dakota USA _

Re: Is there UNIX analog of ftp command pls?

2006-12-21 Thread Eric Kjeldergaard
On 12/21/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: On Thu, Dec 21, 2006 at 12:45:35PM -0600, Dan Nelson wrote: > In the last episode (Dec 19), [EMAIL PROTECTED] said: > > Is there UNIX analog of ftp command pls, i. e. ls | less ? > > Yes, "ls | less" is t

Re: Is there UNIX analog of ftp command pls?

2006-12-21 Thread Dan Nelson
In the last episode (Dec 21), [EMAIL PROTECTED] said: > On Thu, Dec 21, 2006 at 12:45:35PM -0600, Dan Nelson wrote: > > In the last episode (Dec 19), [EMAIL PROTECTED] said: > > > Is there UNIX analog of ftp command pls, i. e. ls | less ? > > Thank you for response,

Re: Is there UNIX analog of ftp command pls?

2006-12-21 Thread a
On Thu, Dec 21, 2006 at 12:45:35PM -0600, Dan Nelson wrote: > In the last episode (Dec 19), [EMAIL PROTECTED] said: > > Is there UNIX analog of ftp command pls, i. e. ls | less ? > > Yes, "ls | less" is the way to do it. You can add a shell alias to > make it easier t

Re: Is there UNIX analog of ftp command pls?

2006-12-21 Thread Raymond Pasco
On Tue, Dec 19, 2006 at 09:53:59PM +0200, [EMAIL PROTECTED] wrote: > Is there UNIX analog of ftp command pls, i. e. ls | less ? the BSD version of ftp(1) has the pls command (pdir is also a synonym to it). -- Raymond Pasco <[EMAIL PROTECTED]> Mobile: +1 860 335 5022 (SMS only please) By

Re: Is there UNIX analog of ftp command pls?

2006-12-21 Thread Dan Nelson
In the last episode (Dec 19), [EMAIL PROTECTED] said: > Is there UNIX analog of ftp command pls, i. e. ls | less ? Yes, "ls | less" is the way to do it. You can add a shell alias to make it easier to type: alias pls="ls -l | less" That's for bourne-style shells

Re: Is there UNIX analog of ftp command pls?

2006-12-21 Thread Bill Campbell
On Tue, Dec 19, 2006, [EMAIL PROTECTED] wrote: >Is there UNIX analog of ftp command pls, i. e. ls | less ? There's a Windows analog of the UNIX ftp command (pretty much everything from DOS 2.0 on was taken from UNIX starting with the hierarchical file system). Bill -- INTERNET:

Is there UNIX analog of ftp command pls?

2006-12-21 Thread a
Is there UNIX analog of ftp command pls, i. e. ls | less ? Elisey Babenko ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"