dotfiles/.scripts/mailnotify.sh
2021-06-29 01:21:14 +02:00

8 lines
127 B
Bash
Executable file

#!/bin/bash
ml="$(find $HOME/MAIL/offlineIMAP/*/INBOX/new -type f | wc -l)"
if (( ml > 0 )); then
echo $ml
else
echo "0"
fi