mirror of
https://github.com/aljazceru/cyphernode.git
synced 2025-12-17 04:35:14 +01:00
13 lines
169 B
Bash
13 lines
169 B
Bash
#!/bin/sh
|
|
|
|
. ./trace.sh
|
|
|
|
sql()
|
|
{
|
|
trace "sqlite3 ${DB_FILE} '${1}'"
|
|
sqlite3 -cmd ".timeout 20000" ${DB_FILE} "${1}"
|
|
return $?
|
|
}
|
|
|
|
case "${0}" in *sql.sh) sql $@;; esac
|