auth_log.txt の最新エントリは末尾にあります。末尾の20件だけを抽出するコマンドはどれですか?
auth_log.txt
head -n 20 auth_log.txt
tail -n 20 auth_log.txt
tail -n +20 auth_log.txt
tail -n 15 auth_log.txt