mirror of
https://github.com/meineerde/dotfiles.git
synced 2025-10-17 19:41:01 +00:00
3 lines
382 B
Bash
Executable File
3 lines
382 B
Bash
Executable File
#!/bin/bash
|
|
curl --silent -I http://www.strandbar-mitte.de/alteseuropa/download/Mittagskarte.pdf | grep Last-Modified | grep -o ' .*' | ruby -rdate -pe '$_ = DateTime.parse($_).day == Date.today.day; exit($_ ? 0 : 1)' && curl http://www.strandbar-mitte.de/alteseuropa/download/Mittagskarte.pdf --silent -o /tmp/mittagskarte.pdf && open /tmp/mittagskarte.pdf || echo 'Noch nicht da'
|