请教一个问题,查找包含某个字符串的文件的指令怎么写

$ find /your/path -name "filename" -exec grep -l "string" {} \;      
不好意思,把l看成I了