From 9db2002a9ecf0a62e4476ecd46429efec5ee654e Mon Sep 17 00:00:00 2001 From: Sleeping Crows Date: Thu, 18 May 2023 22:42:07 -0400 Subject: [PATCH] Adjusted echo format for better readability. --- Furaffinity/fa.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Furaffinity/fa.sh b/Furaffinity/fa.sh index ffb9704..611b53a 100755 --- a/Furaffinity/fa.sh +++ b/Furaffinity/fa.sh @@ -68,11 +68,11 @@ do result=$(curl -s --stderr - https://www.furaffinity.net/view/$ranid) if grep -q "not in our database" <<< "$result"; then - echo "$ranid does not exist, logged and re-rolling. ($i of $rep)" + echo "($i of $rep) $ranid does not exist, logged and re-rolling." echo "$ranid" >> already-checked.txt sleep 0.5 elif grep -q "pending deletion" <<< "$result"; then - echo "$ranid is pending deletion, logged and re-rolling. ($i of $rep)" + echo "($i of $rep) $ranid is pending deletion, logged and re-rolling." echo "$ranid" >> already-checked.txt sleep 0.5 # if it passes the second test, run the main script. @@ -80,7 +80,7 @@ do # Only upticks the counter on a hit. xdg-open https://furaffinity.net/view/$ranid 2> /dev/null echo "$ranid" >> already-checked.txt - echo "🔫 New Submission! $ranid ($i of $rep)" + echo "($i of $rep) 🔫 New Submission! $ranid " counts=$(wc already-checked.txt | awk '{print $1}') sleep 0.5 #to avoid site throttling.