我使用命令find
递归浏览目录树,计算文件,大小等......
现在我需要获取每个文件的目录深度。 FreeBSD 和 CentOS 都有可移植的方法吗?
我知道find
能够打印实际的目录深度,但遗憾的是这只适用于CentOS,而不适用于FreeBSD。
另外 - 我需要保持标准find
输出或将目录深度放在输出的开头并从那里剪切。
答案 0 :(得分:5)
您可以在路径中计算/
:
$ find . -type f -exec bash -c 'echo '{}' | grep -o / | wc -l' \;
或者使用文件名:
$ mkdir -p one/two/three four/five && touch file one/two/file one/two/three/file
$ find . -type f -exec bash -c 'echo -n '{}' :; echo '{}' | grep -o / | wc -l' \;
./file :1
./one/two/file :3
./one/two/three/file :4
答案 1 :(得分:1)
试试这个:
find . -type d -exec bash -c 'echo $(tr -cd / <<< "$1"|wc -c):$1' -- {} \; | sort -n | tail -n 1 | awk -F: '{print $1, $2}'