Macのfindコマンド(BSD版)でドットファイルとドットディレクトリを除いて検索する方法。
command
find . -type d -name '.*' -prune -or -not -name '.*'
-not name '.*'
だけだとドットディレクトリ内にあるドットファイルじゃないファイルに引っかかるので、ドットディレクトリ内に入らないように-type d -name '.*' -prune
とする必要がある。
Go to list of users who liked
More than 5 years have passed since last update.
Macのfindコマンド(BSD版)でドットファイルとドットディレクトリを除いて検索する方法。
find . -type d -name '.*' -prune -or -not -name '.*'
-not name '.*'
だけだとドットディレクトリ内にあるドットファイルじゃないファイルに引っかかるので、ドットディレクトリ内に入らないように-type d -name '.*' -prune
とする必要がある。
Register as a new user and use Qiita more conveniently
Go to list of users who liked