The newest entries in auth_log.txt are at the bottom. Which command extracts exactly those last 20 entries?
auth_log.txt
tail -n 15 auth_log.txt
tail -n +20 auth_log.txt
tail -n 20 auth_log.txt
head -n 20 auth_log.txt