we run the following command to locate duplicate subjects from Exim mail log
what if i want run this command to give me feedback for only the last day or last two days
PHP:
awk -F"T=\"" '/<=/ {print $2}' /var/log/exim_mainlog | cut -d\" -f1 | sort | uniq -c | sort -n