diff --git a/script.sh b/script.sh new file mode 100644 index 0000000..7a3c6f7 --- /dev/null +++ b/script.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +if [[ $1 -eq "0" ]]; then + sqlite3 test.db ".read create_db.sql" +elif [[ $1 -eq "1" ]]; then + sqlite3 test.db ".read insert_data.sql" +elif [[ $1 -eq "9" ]]; then + sqlite3 test.db ".read show_all.sql" +fi