6 lines
98 B
Bash
Executable File
6 lines
98 B
Bash
Executable File
#!/bin/sh
|
|
DBFILE=data.sqlite
|
|
|
|
rm -f "$DBFILE"
|
|
sqlite3 "$DBFILE" -init bootstrap.sql -line '.quit'
|