gpt4 book ai didi

linux - 哪个目录有更多的文件,哪个有更多的子目录?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:53:57 24 4
gpt4 key购买 nike

我想写一个 shell 脚本来比较两个目录的大小X 和 Y,并报告哪个目录有更多文件,哪个目录有更多子目录。所以 X 和 Y 是两个参数。

我知道统计目录中文件的代码是

ls -l | wc -l

我在论证和比较方面遇到了一些麻烦。

子目录也一样。我是 shell 脚本的新手,所以我们将不胜感激。

最佳答案

对于你可以做的文件:

filesX=$(find "${X}" -type f | wc -l)
filesY=$(find "${Y}" -type f | wc -l)

if (( filesX < filesY )); then
echo "${Y} has more files"
elif (( filesX > filesY )); then
echo "${X} has more files"
else
echo "${X} and ${Y} have same number of files"
fi

对于 dirs 来说基本是一样的:

dirsX=$(find "${X}" -type d | wc -l)
dirsY=$(find "${Y}" -type d | wc -l)

if (( dirsX < dirsY )); then
echo "${Y} has more dirs"
elif (( dirsX > dirsY )); then
echo "${X} has more dirs"
else
echo "${X} and ${Y} have same number of dirs"
fi

关于linux - 哪个目录有更多的文件,哪个有更多的子目录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28287501/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com