Linux/小技集/MySQLコマンドをShellスクリプトで実行する - 開発者向け WikiMySQLコマンドをShellスクリプトで実行する † ユーザ新規追加 mysql_adduser.sh #!/bin/sh if [ $# -ne 3 -a $# -ne 4 ]; then echo "$0 <rootpassword> <user> <password> [host]" exit 1 fi if [ $# -eq 3 ]; then HOST="localhost" else...