root/bin/mysql_bien @ 9881
1 |
#!/bin/bash
|
---|---|
2 |
# Runs a MySQL command on the local MySQL server
|
3 |
|
4 |
selfDir="$(dirname -- "$0")" |
5 |
|
6 |
. "$selfDir/vegbien_dest" |
7 |
|
8 |
exec mysql --host="$host" --user="$user" --password="$password" "$@" |