remove unbuffered flag

This commit is contained in:
filifa 2024-08-02 22:52:58 -05:00
parent e22bf6a6eb
commit 8f051bf050
1 changed files with 1 additions and 1 deletions

View File

@ -45,4 +45,4 @@ save="\"sqlite3 $db '.mode ascii' '.separator ' '.import /dev/stdin mlbdata'\""
# grab select data from each response with jq, add 0 to the end of each line
# (to go in the 'posted' db column), then write each line as they come in to db
mlblive subscribe -g $gamePk | jq -Sc --unbuffered "$jqFilter" | awk "{$fmt | $save; close($save)}"
mlblive subscribe -g $gamePk | jq -Sc "$jqFilter" | awk "{$fmt | $save; close($save)}"