批量生成随机字符名文件 Post author:瓜丢夏 Post published:2019-12-30 Post category:Shell脚本 Page Views 549 阅读 1.批量生成随机字符名文件#!/bin/bash#Date:2019-12-30#Function:Create random character filesPath=/study[ -d "$Path" ] || mkdir -p $Pathfor n in `seq 10`do random=$(openssl rand -base64 40|sed 's#[^a-z]##g'|cut -c 2-11) touch $Path/${random}_study.txtdone 「 文章如果对你有帮助,请点个赞哦^^ 」  0 若无特殊注明,文章均为本站原创或整理发布。转载请注明本文地址:https://om.fangxiaoxiong.com/1749.html Read more articles 上一篇RSYNC服务启动脚本下一篇批量修改文件名 相关推荐 Sersync服务启动脚本 2020-03-03 批量修改文件名 2019-12-30 批量创建用户 2020-01-01