+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
asked Nov 30, 2023 in Linux by sharadyadav1986
...