find /path -type f | xargs grep "STRING"
實列 : 找etc 下含有 network 字串的所有檔案
find /etc -name "*" | xargs grep "network"
(Visited 42 times, 1 visits today)
find /path -type f | xargs grep "STRING"
實列 : 找etc 下含有 network 字串的所有檔案
find /etc -name "*" | xargs grep "network"