A system administrator needs to find occurrences of the word 'refused' in the 'auth.log' file, which indicates failed SSH login attempts, and then count how many times this occurs. Which command will provide the accurate count?
grep -v 'refused' /var/log/auth.log | wc -l
grep 'refused' /var/log/auth.log | wc -l
grep -c 'refused' /var/log/auth.log
grep 'refused' /var/log/auth.log -c