Write a command that will look for files with an extension “sh”, and has the occurrence of the string “apple” in it.
Find ./ -name "*.sh" | xargs grep –i "apple"
Write a command that will look for files with an extension “sh”, and has the occurrence of the string “apple” in it.
Find ./ -name "*.sh" | xargs grep –i "apple"
1 person found this article useful
1 person found this article useful