LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
12
返回列表 发新帖
楼主: hlh771

如何在一个目录下的所有文件(包括子目录)中查找一个字符串[基本解决]

[复制链接]
发表于 2004-4-2 18:47:30 | 显示全部楼层
最初由 cozo 发表
xemacs有没有windows版?我的linux没有装图形界面。

http://www.xemacs.org/Download/index.html
发表于 2004-4-2 19:05:05 | 显示全部楼层
grep 和find的比较:
/home/javalee:time grep -Rl "\<ABC\>" ./test/*
./test/a/b/c/d/e/f/g/h/test.txt
    0.08s real     0.00s user     0.01s system
/home/javalee:time find ./test -type f -exec grep -l "\<ABC\>" {} \;
./test/a/b/c/d/e/f/g/h/test.txt
    0.13s real     0.02s user     0.03s system
ps:感觉还是grep -R快呀
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表