批量touch文件

使用for循环在/magedu目录下通过随机小写10个字母加固定字符串mage批量创建10个文件

#!/bin/bash
b=''
a=(a b c d e f g)
for ((m=1;m<=10;m++));do
    for ((i=1;i<=10;i++));do
        c=$c${a[ $RANDOM % ${#a[@]} ]}
    done
    touch /magedu/$c_mage.txt
    c=''
done
#function a(){
#}


你可能感兴趣的:(字符串,shell,批量,批量添加)