Dan Farrell <[EMAIL PROTECTED]> wrote: > > - When using tab completion, and you press tab two times to get a list > > of possibilities, ksh doesn't use less/more to present the > possibilities > > (i.e. they just scroll by and I have to use shift+page-up). > > > > Less/more works just fine for me in ksh... or maybe I installed > something I've forgotten about to add this functionality? > > # cat /var/www/conf/httpd.conf | less
1. Using cat is not tab completion. 2. Don't cat a file just to pipe it to another program that can read the file itself. (use less /var/www/conf/httpd.conf) Adam