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
        dnel...@allantgroup.com

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/mysql?unsub=arch...@jab.org

Reply via email to