在mac下不能正常的使用grep
终端执行:
grep -R speed
会卡住
grep: warning: recursive search of stdin
这是因为grep在macOS上基于BSD,而grep在Ubuntu上基于GNU
使用该-R选项时,MacOS grep要求显式为其提供要搜索的目录。例如,指定 "."(点) 以递归方式搜索当前目录:
grep -R speed .
在mac下不能正常的使用grep
终端执行:
grep -R speed
会卡住
grep: warning: recursive search of stdin
这是因为grep在macOS上基于BSD,而grep在Ubuntu上基于GNU
使用该-R选项时,MacOS grep要求显式为其提供要搜索的目录。例如,指定 "."(点) 以递归方式搜索当前目录:
grep -R speed .
本文标题:MacOS 终端使用grep---【grep: warning:
本文链接:https://www.haomeiwen.com/subject/usndxrtx.html
网友评论