close pipe after every post

This commit is contained in:
filifa 2024-08-01 18:29:44 -05:00
parent 98301a0861
commit 142e8630eb
1 changed files with 2 additions and 2 deletions

View File

@ -31,5 +31,5 @@ fi
# format each row of data retreived from the select statement and pipe to toot
fmt='printf "%s\n\n%s %s\n#%s %s\n#%s %s\n\n#baseball #live\n", $1, $2, $3, $4, $5, $6, $7'
post="toot post --using $account"
sqlite3 $db < postplays.sql | awk -F  "{$fmt | \"$post\"}"
post="\"toot post --using $account\""
sqlite3 $db < postplays.sql | awk -F  "{$fmt | $post; close($post)}"