码迷,mamicode.com
首页 > 其他好文 > 详细

批量touch文件

时间:2015-04-15 23:40:00      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:字符串   shell   批量   批量添加   bash   

使用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(){
#}


本文出自 “运维狗” 博客,请务必保留此出处http://yunweigou.blog.51cto.com/6299641/1633030

批量touch文件

标签:字符串   shell   批量   批量添加   bash   

原文地址:http://yunweigou.blog.51cto.com/6299641/1633030

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!