+1 vote
in Linux by
Write a command that will look for files with an extension "c", and has the occurrence of the string "apple" in it.

1 Answer

0 votes
by

 Find ./ -name "*.c" | xargs grep –i "apple"

Related questions

0 votes
+1 vote
asked May 10, 2021 in Linux by rajeshsharma
...