查找内容,内容包含xx的文件,显示行号
find src -type f|xargs grep -n xx
正则表达式,查找内容包含 page/.*?.html
的文件
find src-type f|xargs grep -E page/.*?.html
反向匹配,查找不包含html的文件
find src -type f|grep -v html
相关文档
暂无
随便看看
畅言模块加载中
查找内容,内容包含xx的文件,显示行号
find src -type f|xargs grep -n xx
正则表达式,查找内容包含 page/.*?.html
的文件
find src-type f|xargs grep -E page/.*?.html
反向匹配,查找不包含html的文件
find src -type f|grep -v html
相关文档
暂无
随便看看