Is there UNIX analog of ftp command pls?

Josh Carroll josh.carroll at gmail.com
Thu Dec 21 14:26:11 PST 2006


> 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


More information about the freebsd-questions mailing list