dotfiles/.scripts/mailnotify.sh

9 lines
127 B
Bash
Raw Normal View History

2021-06-29 01:21:14 +02:00
#!/bin/bash
ml="$(find $HOME/MAIL/offlineIMAP/*/INBOX/new -type f | wc -l)"
if (( ml > 0 )); then
echo $ml
else
echo "0"
fi