8 lines
169 B
Bash
Executable file
8 lines
169 B
Bash
Executable file
#!/bin/bash
|
|
cd ../data
|
|
cd testing
|
|
cat schema.sql | sqlite3 testing.db
|
|
cd ../training
|
|
cat schema.sql | sqlite3 training.db
|
|
cd ../words/
|
|
cat schema.sql | sqlite3 words.db
|