首页
编程
java
php
前端
首页
编程
java
php
前端
求一段字符串搜索的脚本
查找A目录下面所有包含c字符串的b.txt文件???
find ./ -name *.txt|xargs grep "keyword"
grep "keyword" *.txt
点击展开全文