13 lines
187 B
Bash
Executable file
13 lines
187 B
Bash
Executable file
#!/bin/sh
|
|
|
|
git pull
|
|
git submodule foreach git pull origin master
|
|
|
|
./cables-per-company.py
|
|
echo '.headers on
|
|
.mode csv
|
|
.output cables.csv
|
|
SELECT * FROM cables;
|
|
.quit
|
|
' | sqlite3 cables.db
|