aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile.d/remind.bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash/bash_profile.d/remind.bash')
-rw-r--r--bash/bash_profile.d/remind.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/bash_profile.d/remind.bash b/bash/bash_profile.d/remind.bash
index 50a3d8c8..7188c639 100644
--- a/bash/bash_profile.d/remind.bash
+++ b/bash/bash_profile.d/remind.bash
@@ -1,8 +1,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)
+ printf '\n'
) ; fi