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/soundcloud

8 lines
204 B
Plaintext
Raw Normal View History

2021-11-28 19:00:00 -05:00
users=`echo $content | grep -o -P '(?<=soundcloud:users:).*?(?=")' | head -1`
if [[ -n "$users" ]]
then
rss="https://feeds.soundcloud.com/users/soundcloud:users:"${users}"/sounds.rss"
page_ext=$rss
fi