MySQL
概要 [#x29cd3c2]
MySQLで使えるシステムコマンドのTipsです。
一覧 [#w6695245]
hostname [#te21f988]
mysql> system hostname
b1c8a78553a7
ログに保存 [#t00ded06]
mysql> tee test.log
Logging to file 'test.log'
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| test |
+--------------------+
4 rows in set (0.00 sec)
mysql> notee;
Outfile disabled.
mysql> quit
Bye
root@b1c8a78553a7:/# cat test.log
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| test |
+--------------------+
4 rows in set (0.00 sec)
mysql> notee;
見やすくするためにpagerをセットする [#nafe9dd8]
セット [#cb1ae52a]
> pager less -S
とか
> pager more
pagerを解除する [#h8f75aea]
> nopager