From: Dan Nelson Date: August 25 2010 8:44pm Subject: Re: How many pager command within mysql command line client? List-Archive: http://lists.mysql.com/mysql/222677 Message-Id: <20100825204444.GB73051@dan.emsphone.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In the last episode (Aug 25), Moon's Father said: > Hi. > For example, entering mysql command line client, > mysql> pager more ( or pager md5sum and so on.) > > I want to know how many command the 'pager' follows? Any reply will > be big appreciated. Any command can be used as a pager. Some commands are less useful than others, though :) PAGER set to 'cat -n' mysql> select "hello"; 1 +-------+ 2 | hello | 3 +-------+ 4 | hello | 5 +-------+ 1 row in set (0.01 sec) mysql> pager date PAGER set to 'date' mysql> select "hello"; Wed Aug 25 15:43:46 CDT 2010 1 row in set (0.00 sec) mysql> -- Dan Nelson dnelson@stripped