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