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

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