You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
431 B
18 lines
431 B
12 years ago
|
#!/bin/bash
|
||
|
#
|
||
|
# Изменён: Пн 26 авг 2013 18:53:37
|
||
|
#
|
||
|
|
||
|
#Проверка почты с помощью fetchmail
|
||
|
#Количество непрочитанных сообщений записывается в mail/new
|
||
|
|
||
|
/usr/bin/awk -v LOG=~/.shellrc/var/mail/new '
|
||
|
/^[0-9]+/ {
|
||
|
total += $1
|
||
|
}
|
||
|
|
||
|
END {
|
||
|
print total > LOG
|
||
|
}' <(/usr/bin/fetchmail -a -f ~/.shellrc/etc/mail/fetchmail/fetchmailrc) ~/.shellrc/var/mail/new
|
||
|
|