mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-10-08 02:56:41 +08:00
11 lines
242 B
Go
Executable File
11 lines
242 B
Go
Executable File
#!/usr/bin/env bash
|
|
# leehom Chen clh021@gmail.com
|
|
cd "$( dirname "${BASH_SOURCE[0]}" )" || exit
|
|
file="test.db"
|
|
if [ -f "$file" ]; then
|
|
echo "Deleting $file..."
|
|
rm "$file"
|
|
fi
|
|
echo "Restore $file..."
|
|
sqlite3 test.db ".read sqlite.sql"
|