Login
Remember
Register
Ask a Question
Write a command that will look for files with an extension "c", and has the occurrence of the string "apple" in it.
+1
vote
asked
May 11, 2021
in
Linux
by
rajeshsharma
Write a command that will look for files with an extension "c", and has the occurrence of the string "apple" in it.
#linux
command
extention
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 11, 2021
by
rajeshsharma
Find ./ -name "*.c" | xargs grep –i "apple"
...