This file contains 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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> | |
<title>Check AirPod availability in Apple Stores</title> | |
<style> | |
body { | |
font-size: 12px; |
This file contains 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
#!/bin/bash | |
# --- Required variables --- | |
RSS_URI="/your/rss/file" | |
MAIL_TO="[email protected]" | |
LOG_FILE="/your/log/file" | |
# Log that subscriber numbers will be written to. You will have to create one. | |
SUBSCRIBER_LOG="/place/to/log/subs" |