Update Troubleshooting

Matthias Klein 2025-08-03 21:28:09 +00:00
parent 50b529b3ad
commit cc36e3e16d

@ -22,7 +22,7 @@ The RSS feed URLs in `rss_feeds.txt` contain invisible control characters, often
docker compose down
# Remove all control characters from rss_feeds.txt
sed -i 's/[[:cntrl:]]//g' rss_feeds.txt
sed -i 's/\r//g; s/[[:cntrl:]]//g' rss_feeds.txt
# Alternative approach using tr
cat rss_feeds.txt | tr -d '\000-\031' > rss_feeds_clean.txt