]> git.sthu.org Git - shutils.git/blob - conky/showmails.sh
bib2html.py: Use journaltitle
[shutils.git] / conky / showmails.sh
1 #!/bin/sh
2
3 for f in `find $HOME/.smailq/data -name "*.eml"`; do
4 to=`grep To: $f | tail -c +5 | head -c 15`
5 subj=`grep Subject: $f | tail -c +10`
6 echo "$to: $subj"
7 done