MacOS 终端使用grep---【grep: warning:
2021-11-30 本文已影响0人
mayuee
在mac下不能正常的使用grep
终端执行:
grep -R speed
会卡住
grep: warning: recursive search of stdin
这是因为grep在macOS上基于BSD,而grep在Ubuntu上基于GNU
使用该-R选项时,MacOS grep要求显式为其提供要搜索的目录。例如,指定 "."(点) 以递归方式搜索当前目录:
grep -R speed .