対話形式処理のスクリプト化
例えば次のような処理をスクリプトやマクロで行いたいのですが可能でしょうか?
(シェル言語はbash,zshなどを想定しておりますが他の言語を想定したご回答でも参考になります)
ちなみに対話途中で表示される出力結果はあってもなくても構いませんが
出力結果を表示させないようなやり方から理解したいと考えております。
# mysql -u root
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 10 to server version: 4.1.12
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> select user,host,password from ysql.user;
+------+----------------------+----------+
| user | host | password |
+------+----------------------+----------+
| root | localhost | |
| root | centos.centossrv.com | |
| | localhost | |
| | centos.centossrv.com | |
+------+----------------------+----------+
4 rows in set (0.00 sec)
mysql> set password for root@localhost=password('rootパスワード');
Query OK, 0 rows affected (0.00 sec)
mysql> set password for root@'centos.centossrv.com'=password('rootパスワード');
Query OK, 0 rows affected (0.00 sec)
mysql> select user,host,password from mysql.user;
+------+----------------------+------------------+
| user | host | password |
+------+----------------------+------------------+
| root | localhost | **************** |
| root | centos.centossrv.com | **************** |
| | localhost | |
| | centos.centossrv.com | |
+------+----------------------+------------------+
4 rows in set (0.00 sec)
mysql> exit
Bye