diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-09-18 18:11:07 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-09-18 18:11:07 -0300 |
commit | 466c31cd91e5576405af190f76c073e1d06a4482 (patch) | |
tree | 1a12427f1704b0b0085a8f686f0424d54eb3172f /email/checkmail | |
parent | f32ec8c49226dc860c38a2c36d7587d1d27419b8 (diff) | |
download | utils-mail-466c31cd91e5576405af190f76c073e1d06a4482.tar.gz utils-mail-466c31cd91e5576405af190f76c073e1d06a4482.tar.bz2 |
Sorting scripts
Diffstat (limited to 'email/checkmail')
-rwxr-xr-x | email/checkmail | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/email/checkmail b/email/checkmail deleted file mode 100755 index 078f111..0000000 --- a/email/checkmail +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash -# -# Simple mail counter -# Inspired by http://www.vivaolinux.com.br/dicas/verDica.php?codigo=2432 -# - -# Fetch and compute -FETCH=`fetchmail -c` -TOTAL=`echo $FETCH | awk '{ print $1 }'` -SEEN=`echo $FETCH | awk '{ print $3 }' | sed -e 's/(//'` -NEW=`echo "$TOTAL - $SEEN" | bc` - -# Display response -echo $NEW/$TOTAL |