cccs-website/scripts/send-reminder-tweets.sh
Stefan Schlott 0faab24dff Tweet script
2018-06-19 19:21:48 +02:00

14 lines
401 B
Bash
Executable file

#!/bin/bash
cd `dirname $0`/..
cat output/cccs.ical | scripts/tweet-reminders.rb 0 "Heute:" | while read LINE ; do
bundle exec t update "$LINE"
done
cat output/cccs.ical | scripts/tweet-reminders.rb 1 "Morgen:" | while read LINE ; do
bundle exec t update "$LINE"
done
cat output/cccs.ical | scripts/tweet-reminders.rb 7 "In einer Woche:" | while read LINE ; do
bundle exec t update "$LINE"
done