X-Git-Url: https://iankelling.org/git/?p=iankelling.org;a=blobdiff_plain;f=get-comments;h=541ce3cf9771dd717d514f1fe205175f501e6e94;hp=36bbe0dfca800540ea439a254da9a0ca044544ca;hb=56cff87ea0949598b121518b7887cca1f99c619d;hpb=d0a5b73d2a275bfff5957961f2360df8966bee22 diff --git a/get-comments b/get-comments index 36bbe0d..541ce3c 100755 --- a/get-comments +++ b/get-comments @@ -20,11 +20,11 @@ trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR cd "${BASH_SOURCE%/*}/proposed-comments" all=false -shell="ssh iankelling.org" +shell="ssh $(chost iankelling.org)" while [[ $1 ]]; do case $1 in -a) all=true; shift ;; - -l) shell= ; shift ;; # -l for local + -l) shell= ; shift ;; # -l for local site instead of iankelling.org esac done @@ -41,9 +41,9 @@ EOF fi # we may want to avoid rate limited posts here too. -sql="select * from c" +sql="select * from c;" if [[ $date ]]; then - date_clause=" where date > cast('$date' as real)" + sql+=" where date > cast('$date' as real)" fi -echo "$sql" -$s "$sql" > /tmp/hcomments +echo "executing: $sql" +$s > /tmp/hcomments <<<"$sql"