# Turn following csv mastodon list to rss for sfeed 2024-01-27T21:25:17Z I really enjoy sfeed: => https://codemadness.org/sfeed.html Find below an awk file to convert a following_accounts.csv to sfeedrc format. Now, in ~/.sfeed/sfeedrc, I have: ``` feeds() { ... ... . ~/.sfeed/mastodon.txt ``` I filled ~/.sfeed/mastodon.txt with: ``` awk -F, -f mastocsv2sfeed.awk following_accounts.csv > ~/.sfeed/mastodon.txt ``` mastocsvfeed.awk is: ```mastocsvfeed.awk #!/usr/bin/awk -f { account = $1 split($1, a, "@") username = a[1] domain = a[2] printf "feed '%s' 'https://%s/@%s.rss'\n", account, domain, username } ``` To get your following_accounts.csv, go to your profile export panel. --- Something to say? Send it by email: => mailto:bla@bla.si3t.ch?subject=turn-mastodon-followed-to-rss-list-for-sfeed See instructions: => https://si3t.ch/log/_commentaires_.txt