This repository has been archived on 2021-11-29. You can view files and clone it, but cannot push or open issues or pull requests.
rsstube-bash-old/scripts/page-extractors/apple_podcasts

7 lines
115 B
Plaintext

rss=`echo "$content" | grep -o -P '(?<="feedUrl":").*?(?=")' | head -1`
if [[ -n "$rss" ]]
then
page_ext=$rss
fi