cat files.txt | xargs grep keyword
or
grep keyword `cat files.txt`
or (equivalent to the previous one, but more difficult to read incorrectly)
grep keyword $(cat files.txt)
gotta do the trick.
Traps:
.txt , , " .txt" , "This", "is", "a" "filename.txt". , , -.
- , . (... -print0/xargs -0 .)
(cat) ( ). (xargs) ; xargs .