简答题

用find 写出查找/opt/kernel目录下(包括子目录)文件名为Kconfig的命令。

正确答案

cd /opt/kernel/; find -name Kconfig 或find /opt/kernel -name Kconfig

答案解析