diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-05-26 16:32:18 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-05-26 16:32:18 -0300 |
commit | 0303a854e68c96656343a05746e4618af2572519 (patch) | |
tree | c58efe544e9e08589e7d39a723f512cfdec9aa5c /status | |
parent | bc4ef0772060dbff10d799462bbd20d0330c3823 (diff) | |
download | scripts-0303a854e68c96656343a05746e4618af2572519.tar.gz scripts-0303a854e68c96656343a05746e4618af2572519.tar.bz2 |
Be case insensitive for empty reminders result check
Diffstat (limited to 'status')
-rwxr-xr-x | status | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ function status_run { # Check your reminders if which remind &> /dev/null && [ -e "$HOME/.reminders" ]; then - remind ~/.reminders | grep -v '^No reminders.$'# | tr '[:upper:]' '[:lower:]' + remind ~/.reminders | grep -iv '^no reminders.$' # | tr '[:upper:]' '[:lower:]' fi # Update your mrconfig and check all registered repositories |