How can I make the “find” Command on OS X default to the current directory?

后端 未结 7 1652
长情又很酷
长情又很酷 2021-02-13 07:43

I am a heavy command line user and use the find command extensively in my build system scripts. However on Mac OS X when I am not concentrating I often get output l

7条回答
  •  感情败类
    2021-02-13 07:54

    Install GNU find instead.

    $ brew install findutils
    $ alias find=gfind
    

    Yay, it works!

提交回复
热议问题