mirror of
https://github.com/infra7ti/dbtool.git
synced 2025-12-05 23:02:37 -03:00
16 lines
249 B
Bash
16 lines
249 B
Bash
#!/usr/bin/bash
|
|
set -euo pipefail
|
|
|
|
# -- Host Class ---------------------------------------------------------------
|
|
|
|
dblist.__load__() {
|
|
unset -v dblist
|
|
|
|
options+='d:'
|
|
arguments['d']="dblist"
|
|
}
|
|
|
|
dblist.__load__
|
|
|
|
# vim: ts=4:sw=4:sts=4:et
|