8 lines
76 B
Bash
8 lines
76 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
rm ./posts.db
|
||
|
cat ./db.sql | sqlite3 ./posts.db
|