From 44da1437771c32bbf45e0e38ae39976000e76a58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Sol=C3=ADs?= Date: Mon, 24 Feb 2025 11:01:24 -0600 Subject: [PATCH] fix: Align a displayed number --- friendica-non-follower-featured-posts.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/friendica-non-follower-featured-posts.sh b/friendica-non-follower-featured-posts.sh index 7c9478e..d7f56b6 100755 --- a/friendica-non-follower-featured-posts.sh +++ b/friendica-non-follower-featured-posts.sh @@ -25,9 +25,9 @@ ccmax=0 until [[ ${cc} -lt ${limit} ]]; do cc=$(sudo mariadb friendica -B -N -q -e "create temporary table tmp_addcontact (select \`url\` from \`contact\` where \`id\` in (select \`contact-id\` from \`group_member\`) or \`id\` in (select \`cid\` from \`user-contact\`) or \`id\` in (select \`uid\` from \`user\`)); delete from workerqueue where \`command\`= \"AddContact\" and regexp_replace(substring_index(substring_index(\`parameter\`, '\\\"', -2), '\\\"', 1), '\\\\\\\\', '') not in (select \`url\` from tmp_addcontact) limit ${cc}; select row_count();") ccmax=$((ccmax + cc)) - printf "\rAddContact\t%s\r" "${ccmax}" + printf "\rAddContact \t%s\r" "${ccmax}" done -printf "\rAddContact \t%s\n\r" "${ccmax}" +printf "\rAddContact \t%s\n\r" "${ccmax}" #echo "AddContact $ccmax" cd=${limit}