Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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.

find /etc -name 'resolv.conf' -exec grep ## 'nameserver' {} \;

(The output of the find command will be a number. Ignore the permission denied warnings)

MY question is with what I replace the ##?? not sure if -n or -c

in my lecture is this but is confusing. thanks

c - count number of LINES that contain the pattern.

When this flag is used, only the number of lines that contain the string pattern is returned, NOT the number of occurrences of the pattern within the file.

n - number the LINES that contain the pattern.

When this flag is used, each line that contains the string-pattern is numbered.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Harness The Power Of Big Data The IBM Big Data Platform

Authors: Paul Zikopoulos, David Corrigan James Giles Thomas Deutsch Krishnan Parasuraman Dirk DeRoos Paul Zikopoulos

1st Edition

ISBN: 0071808183, 9780071808187

More Books

Students also viewed these Databases questions

Question

Work Problem 55 for a second lens with a focal length of 15 cm.

Answered: 1 week ago

Question

What are the major social responsibilities of business managers ?

Answered: 1 week ago

Question

What are the skills of management ?

Answered: 1 week ago

Question

Describe Table Structures in RDMSs.

Answered: 1 week ago