This topic has been archived. It cannot be replied.
-
工作学习 / IT技术讨论 / DX们, 在UNIX/Linux上, 做文件的字苻串搜寻, 你们喜欢 用 find 还是grep 命令? 他们有啥区别哪? 多谢赐教!
-qulaopo(娶老婆);
2005-3-29
(#2209650@0)
-
找字符串应该是grep. find 也是调grep找的。find 用来查找文件。
-canadiantire(轮胎-M.I.N.K.);
2005-3-29
(#2209671@0)
-
right. find and grep should be independent each other ?!?
-647i(路遇*神,卡片遗失一);
2005-3-30
(#2212237@0)
-
如果你不搜索子目录,那用grep 'pattern' *就行了。如果要搜索子目录,用find . | xargs grep 'pattern'
-lionel(Lionel);
2005-3-31
(#2212348@0)
-
我的理解:
find 一般是按文件的属性查找文件,如文件名,大小,日期等。
grep 一般是在文件内容里搜索匹配的字符串
-packet(hello);
2005-3-31
(#2212415@0)
-
多谢各位指教!!!
-qulaopo(娶老婆);
2005-3-31
(#2213730@0)