From 220520c2a10c2eb40aaa384fc375ca8a9a1e7533 Mon Sep 17 00:00:00 2001 From: ingoj Date: Wed, 1 Apr 2020 23:06:09 +0200 Subject: [PATCH] Update cleanup_friendica.sh fixed typo --- cleanup_friendica.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cleanup_friendica.sh b/cleanup_friendica.sh index aa03050..68b2f29 100644 --- a/cleanup_friendica.sh +++ b/cleanup_friendica.sh @@ -20,7 +20,7 @@ done # find & notify users that didn't logged in >6 months and send mail to log in again for u in $( ${friendicapath}/bin/console user list active -c 10000 | grep -v '.*---.*' | sed 's/|/;/g' | tr -s "\ " | sed 's/^;\ //g' | sed 's/\ ;\ /;/g' | sed 's/\ /_/g' | tail -n +2 ); do - r=$(echo "${u}" | awk -F ";" '{print $1}') + username=$(echo "${u}" | awk -F ";" '{print $1}') dispname=$(echo "${u}" | awk -F ";" '{print $2}') profileurl=$(echo "${u}"| awk -F ";" '{print $3}') usermail=$(echo "${u}" | awk -F ";" '{print $4}')