Dienstag, 16. Januar 2018

Unix LINUX: how to find a string in a file

find /here-your-directory -type f -exec grep here-your-text {} \; -print

sudo find /here-your-directory -type f -print0 | xargs -0 grep here-your-text