summaryrefslogtreecommitdiffstats
path: root/.zsh/functions/mailcount
blob: afe6736af0b410fce085ae0367553ac774696925 (plain)
1
2
3
4
5
6
7
#!/bin/zsh

local _new=`ls "$1"/inbox/new | wc -l`
local _unread=`ls "$1"/inbox/cur | egrep -v "S$" | wc -l`
let _count=$_new+$_unread

echo -n $_count