码迷,mamicode.com
首页 > 系统相关 > 详细

Shell实用案例:批量生成随机字符文件名

时间:2017-02-05 00:52:21      阅读:1026      评论:0      收藏:0      [点我收藏+]

标签:$path   创建   bsp   ops   创建文件   path   目录   dir   blog   

代码如下:

 1 #!/bin/sh
 2 #################################################################
 3 # Author:91coder
 4 # Blog:  www.cnblogs.com/91coder
 5 #################################################################
 6 
 7 # 创建目录
 8 Path=/91coder
 9 [ -d "$Path" ]||mkdir -p $Path
10 
11 # 创建文件
12 for n in `seq 10`
13 do
14     random=$(openssl rand -base64 40|sed s#[^a-z]##g|cut -c 2-11)
15     touch $Path/${random}_91coder.html
16 done

运行结果:

 1 [root@warrendevops ~]# ll /91coder/
 2 total 0
 3 -rw-r--r--. 1 root root 0 Feb  4 14:51 dgyelwxmgt_91coder.html
 4 -rw-r--r--. 1 root root 0 Feb  4 14:51 igcaczxyun_91coder.html
 5 -rw-r--r--. 1 root root 0 Feb  4 14:51 itrwznpytf_91coder.html
 6 -rw-r--r--. 1 root root 0 Feb  4 14:51 mnjzmclxrs_91coder.html
 7 -rw-r--r--. 1 root root 0 Feb  4 14:51 ndcbqhttit_91coder.html
 8 -rw-r--r--. 1 root root 0 Feb  4 14:51 nexnbwzmak_91coder.html
 9 -rw-r--r--. 1 root root 0 Feb  4 14:51 pobtynbzfe_91coder.html
10 -rw-r--r--. 1 root root 0 Feb  4 14:51 stusewzwyn_91coder.html
11 -rw-r--r--. 1 root root 0 Feb  4 14:51 wbmzcpugna_91coder.html
12 -rw-r--r--. 1 root root 0 Feb  4 14:51 zgmqeywark_91coder.html

 

Shell实用案例:批量生成随机字符文件名

标签:$path   创建   bsp   ops   创建文件   path   目录   dir   blog   

原文地址:http://www.cnblogs.com/91coder/p/6366598.html

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