AtOM/lib/database/closeDatabase
2013-04-07 01:27:07 +02:00

10 lines
181 B
Plaintext

closeDatabase() {
echo .quit >&3
(( debug )) && echo -n "Waiting for SQLite to terminate... "
wait
(( debug )) && echo OK
exec 3>&-
exec 4<&-
rm "$tempdir"/sqlite.{in,out}
}