Making mysql a bit more shell-like (Jeremy Zawodny's blog)
I use the mysql command-line client a lot. It acts like a mini-shell that makes it easy to send commands or queries to a MySQL server and view the results. However, its navigational facilities aren't terribly shell-like.
mysql のシェルで cd (use: データベース移動) とか ls (show tables) とかのコマンドを使えるようにするパッチ。
あとこれは知らなかったんだけど、プロンプトにカレントデータベース名を出すの便利そう。パッチあてなくてもできる。~/.my.cnf に
[mysql]
prompt="mysql (\d)>"
って書いておけばOK。さっそく設定。