Eu costumo usar a opção de linha de comando --vertical
, que imprimirá um par coluna: valor em cada linha, em vez de linhas de quebra automática.
Com a opção --pager
, você deve poder usar um pager diferente, como menor, mais ou personalizado.
O manual do MySQL tem vários exemplos para usar um pager personalizado , incluindo o seguinte exemplo:
mysql> pager less -n -i -S
mysql> select * from mysql.user;
E, em seguida, role da esquerda para a direita ...
In the preceding example, note the -S option. You may find it very useful for browsing wide query results. Sometimes a very wide result set is difficult to read on the screen. The -S option to less can make the result set much more readable because you can scroll it horizontally using the left-arrow and right-arrow keys. You can also use -S interactively within less to switch the horizontal-browse mode on and off. For more information, read the less manual page.