6 lines
80 B
Bash
6 lines
80 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
rm database.db
|
||
|
cp input.txt workingFile.txt
|
||
|
sqlite3 < solution.sql
|