Files
OptiTrainer/server/quoteDBs/createInfoMap.sh

8 lines
252 B
Bash
Raw Normal View History

#!/bin/bash
dbName=quoteStore_2020-02-24.sqlite3
sqlite3 ${dbName} "select distinct Symbol from OptionQuotes;" | while read currSymbol; do
echo SSSS $currSymbol
sqlite3 ${dbName} "select timeStamp from OptionQuotes where symbol='${currSymbol}';"
done