在一个目录下新建50000个子目录的脚本,要来测试相关性能,如,EXT4是否转换成功,因为EXT4支持无限子目录。
脚本如下:
#!/bin/bash
i=1
while [ $i -le 50000 ]
do
if [ -d /student ];then
mkdir /student/student$i
chmod 754 /student/student$i
i=$(($i+1))
else
mkdir /student
mkdir /student/student$i
chmod 754 /student/student
i=$(($i+1))
fi
done
原创文章,作者:kepupublish,如若转载,请注明出处:https://blog.ytso.com/191203.html