This repository has been archived on 2024-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
probotic/bootstrap/bootstrap.sh

6 lines
107 B
Bash
Raw Normal View History

2023-08-02 13:12:17 -04:00
#!/bin/sh
2023-08-04 07:29:23 -04:00
DBFILE=probotic_data.sqlite
2023-08-04 09:38:39 -04:00
rm -f "$DBFILE"
2023-08-04 07:29:23 -04:00
sqlite3 "$DBFILE" -init bootstrap.sql -line '.quit'