Answer:
c. sudo grep "charlie" /var/log/vsftpd.log
Step-by-step explanation:
- sudo is used to access /var/log files since it requires superuser access
- grep command is used to search for a string of characters in a specified file
- "charlie" is the string searched in the log files
- /var/log/ is where the log files are in linux systems