特定のディレクトリ(lib)を除外したファイルの一覧を取得
例1
$ find . -type d -name lib -prune -o -type f -print
特定のディレクトリ(lib)を除外して、ファイル名が"*.php"のものの一覧を取得
例2
$ find . -type d -name lib -prune -o -type f -name '*.php' -print
Go to list of users who liked
More than 5 years have passed since last update.
特定のディレクトリ(lib)を除外したファイルの一覧を取得
$ find . -type d -name lib -prune -o -type f -print
特定のディレクトリ(lib)を除外して、ファイル名が"*.php"のものの一覧を取得
$ find . -type d -name lib -prune -o -type f -name '*.php' -print
Register as a new user and use Qiita more conveniently
Go to list of users who liked