Linux里循环创建、删除子文件夹

for i in {1..32000};do mkdir $i;done

for i in {1..32000};do rm -rf $i;done


原文地址:https://www.cnblogs.com/droko/p/2380751.html