| Server IP : 216.92.14.13 / Your IP : 216.73.216.171 Web Server : Apache System : Linux vps4089.pairvps.com 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 User : rmlac2fmr ( 1040637) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/bin/ |
Upload File : |
#!/bin/sh
# messages: part of the Elm mail system
# @(#)$Id: messages.SH,v 1.2.40.1 2011-05-05 16:39:39 hurtta Exp $
# Copyright (c) 1988-1992 USENET Community Trust
# Copyright (c) 1986,1987 Dave Taylor
if [ "$2" != "" ]; then
echo Usage: messages \{folder-name\} 1>&2
exit 1
fi
if [ "$1" = "" ]; then
fname=${MAIL-/var/mail/$LOGNAME}
optional="in your incoming mailbox"
else
optional="in folder $1"
first=`expr "$1" : "\(.\).*"`
if [ "$first" = "=" ]; then
last=`expr "$1" : ".\(.*\)"`
fname="`grep maildir $HOME/.elm/elmrc | awk -F= '{print $2}'| tr -d ' '`/$last"
else
fname=$1
fi
fi
if [ -f "$fname" ]; then
mcount=`egrep -c "^From " $fname`
else
echo "Folder $1 does not exist."
exit 0
fi
if [ "$mcount" -eq 1 ]; then
echo There is 1 message $optional.
elif [ "$mcount" -eq 0 ]; then
echo There are no messages $optional.
else
echo There are $mcount messages $optional.
fi
exit $mcount