aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile.d/remind.bash
blob: 7188c6398054dae65d6f19b9e8c0a554dc015c79 (plain) (blame)
1
2
3
4
5
6
7
8
# If interactive and rem(1) installed, run it
if [[ $- == *i* ]] && hash rem 2>/dev/null ; then (
    while read -r reminder ; do
        printf '* %s\n' "$reminder"
    done < <(rem -hq)
    printf '\n'
) ; fi