Don't send output to /dev/null

This commit is contained in:
Stig-Ørjan Smelror 2024-01-29 23:54:30 +01:00
parent 06f478a9a2
commit 5e79140995

5
qsgen2
View File

@ -642,13 +642,12 @@ function _cleanup() {
local debug=true
if (${debug}) echo "${red}_cleanup: Cleaning up tags in: ${1}${end}"
if (${debug}) echo "${red}_cleanup: Cleaning up tags${end}"
echo ${1} | sed \
-e "s|¤||g" \
-e "s|#showimg\ ||g" \
-e "s|#ytvideo\ ||g" \
-e "s|#link\ ||g" \
> /dev/null
-e "s|#link\ ||g"
}