Did you try something like:
grep -Eri -l "drucken" app/views | xargs sed -e '/drucken/d' -i
where '-l' tells grep to only print the file name, '-i' tells sed to modify that file on the fly.
Alternatively you could loop with sed over all files, but it will "touch" all of them even if the file doesn't contain the requested word:
find app/views -type f -exec sed -e '/drucken/d' -i {} \;