8 lines
252 B
Bash
8 lines
252 B
Bash
|
|
#!/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
|