Speaking email notifications
Posted <2017-03-23 Thu 15:39> by Aaron S. Jackson.
Just a bit of fun:
#!/bin/bash
base=~/Maildir/nottingham/INBOX/new
inotifywait -m $base -e create -e moved_to |
while read path action file; do
from=$(grep ^From: "$base/$file" \
| head -n1 \
| cut -d':' -f2 \
| cut -d'<' -f1)
echo "You have an email from $from" | espeak
done
Related posts:
Wanting to leave a comment?
Comments and feedback are welcome by email (aaron@nospam-aaronsplace.co.uk).