borg-list-backups.sh: redirect stderr to 'dev/null' for 'borg list' command.

This commit is contained in:
Christoph 2025-01-01 02:57:26 +01:00
parent 17a65e641d
commit 4b35efda16

View File

@ -282,6 +282,6 @@ while read -r _borg_id _date_weekday _date_date _date_time _time_stamp_borg_bac
echo -e " ${_date_weekday} ${_date_date} ${_date_time} [ \033[33m${_borg_id}\033[m ]"
done < <(borg list ${BORG_URL})
done < <(borg list ${BORG_URL} 2> /dev/null)
clean_up 0