aboutsummaryrefslogtreecommitdiff
path: root/reminders
blob: ca9e6d30b7bb688213072a389b6ef4875f543c75 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
#
# Print a short summary of today's reminders.

if [ -e "$HOME/.reminders" ]; then
  cd 
  remind $HOME/.reminders | grep -v '^No reminders.$' | sed -e '/^$/d'
fi