新建50000个子目录

     在一个目录下新建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

(0)
上一篇 2021年11月14日
下一篇 2021年11月14日

相关推荐

发表回复

登录后才能评论