在一个目录下搜索所有包含字符串“abc”的文件的命令怎么写?

在一个目录下搜索所有包含字符串“abc”的文件的命令怎么写?

如题。

多谢
[code:1]
find /directory -name "*abc*"
[/code:1]
grep -lr "abc" *