This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<opml version="1.0"> | |
<head> | |
<title>YouTube Subscriptions as RSS</title> | |
</head> | |
<body> | |
<outline text="YouTube Subscriptions"> | |
<outline type="rss" text="HorrorBabble" title="HorrorBabble" xmlUrl="https://www.youtube.com/feeds/videos.xml?channel_id=UCIvp_SM7UrKuFgR3W77fWcg" htmlUrl="https://www.youtube.com/@HorrorBabble"/> | |
<outline type="rss" text="Luetin09" title="Luetin09" xmlUrl="https://www.youtube.com/feeds/videos.xml?channel_id=UC8RfCCzWsMgNspTI-GTFenQ" htmlUrl="https://www.youtube.com/@Luetin09"/> | |
<outline type="rss" text="SmoughTown" title="SmoughTown" xmlUrl="https://www.youtube.com/feeds/videos.xml?channel_id=UCcvGOIuFH6befwVyElnMI_A" htmlUrl="https://www.youtube.com/@SmoughTown"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Has to be an environment variable to properly execute the openssl command | |
export KEY_ALTNAMES="something" | |
if [ "$(uname)" == "Darwin" ]; then # OSX | |
echo "continuing" | |
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then | |
echo "Not tested on linux systems" | |
exit | |
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW32_NT" ]; then |