Pronouns he/him
Datetime Format RFC 3339
  • 0 Posts
  • 15 Comments
Joined 2 years ago
cake
Cake day: July 8th, 2023

help-circle
  • #!/bin/sh
    
    # Get the original RSS feed URL from an Apple Podcast show URL.
    
    podcast="$1"
    id=$(echo "$podcast" | awk '{sub(/^.*\/id/, ""); print}')
    curl -s "https://itunes.apple.com/lookup?id=%24id" | jq -r '.results.[0].feedUrl'
    

    There seems to be a bug in Lemmy that messes up the script’s rendering a little, but you’ll figure it out.