Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前我每次插入一个字符串时都必须按 ctrl+H 并且必须在 *.java 文件中找到它。我有大约 600 个字符串要搜索。我想运行批处理搜索,在其中我提供一个包含所有字符串(逗号分隔或单行)的文件,然后 eclipse 对其运行搜索,最好生成一个文件或控制台输出以显示哪些字符串匹配,哪些不匹配
grep从命令行使用怎么样?
grep
Eclipse 不会为你做这件事。您需要编写一个自定义程序。你可以写java程序。使用 eclipse 提供的 Search API。或者干脆使用 grep。如果我没记错的话,grep 命令是
find $dir_path -name *.java -exec grep -i $text '{}' ; -打印