aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/mysql.sh
blob: 00b6930c8f951c7a3523d8b419943b086643c160 (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 "$@"
}