在Linux中,可以使用`grep`或`find`命令来向下搜索字符串。

1. 使用grep命令:`grep`命令用于在文件中搜索指定的模式(字符串)。
```bash
grep "string" file
```
例子:
```bash
grep "hello" example.txt
```
2. 使用find命令:`find`命令用于在指定目录及其子目录下搜索文件,并可以使用`-exec`或`-execdir`参数执行其他命令。
```bash
find /path/to/directory -type f -exec grep -H "string" '{}' \;
```
例子:
```bash
find /home/user/documents -type f -exec grep -H "hello" '{}' \;
```
上面的命令将在`/home/user/documents`目录及其子目录下搜索包含"hello"字符串的文件,并且在找到匹配的文件时打印文件名和匹配的行。