aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/mysql.sh
blob: d37c3ead8f1b7ad145ae5f62abdaa5aef262dc98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# If a file ~/.mysql/$1.cnf exists, call mysql(1) using that file. Otherwise
# just run MySQL with given args. Use restrictive permissions on these files.
# Examples:
#
#   [client]
#   host=dbhost.example.com
#   user=foo
#   password=SsJ2pICe226jM
#
#   [mysql]
#   database=bar
#
mysql() {
    if [ -f "$HOME/.mysql/$1".cnf ] ; then
        shift
        set -- --defaults-extra-file="$HOME/.mysql/$1".cnf "$@"
    fi
    command mysql "$@"
}