%PDF- %PDF-
Direktori : /scripts2/attic/ |
Current File : //scripts2/attic/remove-email-from-bot.sh |
#! /bin/bash grep "courier_login:" /var/spool/exim/msglog/ -R | cut --delimiter=' ' --fields=9 | cut --delimiter=':' --fields=2 | sort | uniq -c| sort echo "Ingrese la cuenta que autentifica: " read AUTH_ACCOUNT if [ "" = "${AUTH_ACCOUNT}" ]; then exit 0 else grep "courier_login:${AUTH_ACCOUNT}" /var/spool/exim/msglog/ -R -l | cut --delimiter='/' --fields=7 | xargs exim -Mrm fi