Question: Create a find command string that will locate the file called resolv.conf and once found, grep for the number of lines that the string nameserver
Create a find command string that will locate the file called resolv.conf and once found, grep for the number of lines that the string nameserver appears in within the file.
Begin your find search within the /etc directory.
Complete the find command string by replacing the ## with the required characters. Enter only the characters below.
find /etc -name 'resolv.conf' -exec grep ##'nameserver' {} \;
(The output of the find command will be a number. Ignore the warnings)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
