Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
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.
Home
Linux
Write a command that will look for files with an extension "c", and has the occurrence of the...
+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"
...