「Linux」findで検索するディレクトリの階層数を指定する方法

2021年4月15日

書式
find 検索ディレクトリ 検索式 オプション
-maxdepth 階層数
-mindepth 階層数

使用例
# ls -R
.:
test1

./test1:
test01.php test11

./test1/test11:
test02.php test111

./test1/test11/test111:
test03.php

指定した階層から下を検索
# find . -mindepth 2 -type d
./test1/test11
./test1/test11/test111

使用例2
指定階層まで検索
# find . -maxdepth 4 -type d
.
./test1
./test1/test11
./test1/test11/test111

Linux

Posted by arkgame