Project

General

Profile

1 7577 aaronmk
#!/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" "$@"