mac下find命令的使用

2019-03-02  本文已影响0人  平_繁

在mac下面想查找某个文件夹下的所有.md文件:

find -name '*.md'

在mac上报如下错误:

find: illegal option -- n

在stackoverflow上找到了答案(https://stackoverflow.com/questions/25840713/illegal-option-error-when-using-find-on-macos):


所以,上面的命令在linux执行完全没问题,而在mac下必须使用:

find . -name '*.md'
上一篇下一篇

猜你喜欢

热点阅读