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.
我正在尝试在我的所有 C# 文件中递归搜索以下字符串。为什么我gettig这个错误?我花了很长时间来安装 CygWin,我一直在使用 Unix,但这不像 Unix 的 grep。值得注意的是,我将 Cygwin 用于我的 WINdows7。谢谢
grep -R 'new IIntf' *.* grep: *.*: No such file or directory grep -R 'new IIntf' *.cs grep: *.cs: No such file or directory
*.*当前目录中可能没有匹配的文件。也许你的意思是grep -R 'new IIntf' .
*.*
grep -R 'new IIntf' .