LoginSignup
7
6

More than 5 years have passed since last update.

Macのfindでhidden fileを除いて検索する方法

Posted at

Macのfindコマンド(BSD版)でドットファイルとドットディレクトリを除いて検索する方法。

command
find . -type d -name  '.*' -prune -or -not -name '.*' 

-not name '.*'だけだとドットディレクトリ内にあるドットファイルじゃないファイルに引っかかるので、ドットディレクトリ内に入らないように-type d -name '.*' -pruneとする必要がある。

7
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
6