From c2f3ea7acf98108a946077433a72b5f61df51deb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Sol=C3=ADs?= Date: Mon, 10 Feb 2025 20:43:39 +0000 Subject: [PATCH] fix: Correct some typos and unneeded comparisons --- friendica-remove-invalid-photos.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/friendica-remove-invalid-photos.sh b/friendica-remove-invalid-photos.sh index a647e56..79d1b05 100755 --- a/friendica-remove-invalid-photos.sh +++ b/friendica-remove-invalid-photos.sh @@ -9,7 +9,7 @@ db=friendica folder=/var/www/friendica intense_optimizations=${1:-"0"} thread_multiplier=1 -nfolder="/tmpʾfriendica-remove-invalid-photos" +nfolder="/tmp/friendica-remove-invalid-photos" nfile="${nfolder}/n$(date +%s).csv" nlock="${nfolder}/n$(date +%s).lock" if [[ ! -d "${nfolder}" ]]; then @@ -57,9 +57,9 @@ loop() { if [[ ! -f "${nlock}" ]]; then touch "${nlock}" fi - if [[ -f "${nlock}" && $(cat "${nlock}" 2>/dev/null || echo 0) -eq "" ]]; then + if [[ -f "${nlock}" && $(cat "${nlock}") -eq "" ]]; then echo "${id}" >"${nlock}" - if [[ -f "${nlock}" && $(cat "${nlock}" 2>/dev/null || echo 0) -eq "${id}" ]]; then + if [[ -f "${nlock}" && $(cat "${nlock}") -eq "${id}" ]]; then read -r n_tmp nt_tmp <"${nfile}" if [[ -n "${n_tmp}" && -n "${nt_tmp}" ]]; then n="${n_tmp}" @@ -191,14 +191,14 @@ loop() { #n is increased only if error_found = 1 touch "${nlock}" fi - if [[ -f "${nlock}" && $(cat "${nlock}" 2>/dev/null || echo 0) -eq "" ]]; then + if [[ -f "${nlock}" && $(cat "${nlock}") -eq "" ]]; then echo "${id}" >"${nlock}" - if [[ -f "${nlock}" && $(cat "${nlock}" 2>/dev/null || echo 0) -eq "${id}" ]]; then + if [[ -f "${nlock}" && $(cat "${nlock}") -eq "${id}" ]]; then read -r n_tmp nt_tmp <"${nfile}" if [[ -n "${n_tmp}" && -n "${nt_tmp}" ]]; then n=$((n_tmp + error_found)) nt=$((nt_tmp + 1)) - if [[ $(cat "${nlock}" 2>/dev/null || echo 0) -eq "${id}" ]]; then + if [[ $(cat "${nlock}") -eq "${id}" ]]; then echo "${n} ${nt}" >"${nfile}" if [[ -f "${nlock}" ]]; then echo "" >"${nlock}"