aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile.d/remind.bash
blob: 50a3d8c891c18ab32cbbfe73e5c8f3e0d86cf29a (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 (
    printf '\n'
    while read -r reminder ; do
        printf '* %s\n' "$reminder"
    done < <(rem -hq)
) ; fi