批量修改多个服务器文件,简单介绍Shell脚本之文件批量创建与修改的方法

一、脚本要求

1.所有操作在/python下

2.批量创建12个以py后缀结尾的文件,文件名中必须包含_hcip,文件名除了_hcip固定字符串外,文件名还包含8个小写随机的字符。

3.创建的12个文件后缀名改为大写的PY,固定字符串改为_hcie

二、脚本内容

#!/bin/bash

##########################################################

#File Name:create_file.sh

#Version:V1.0

#Aurhor:

#Emali:

#Created Time:2021-06-15 02:56:59

#Description: create files & modify files

##########################################################

if [ -d /python ];then

cd /python

else

mkdir /python

cd /python

fi

for i in {1..12}

do

file_name=$(echo $RANDOM |md5sum |cut -c 1-8)

touch ${file_name}_hcip.py

done

for files in $(ls /python)

do

file1=$(echo $files |cut -d '_' -f1)

mv $files ${file1}_hcie.PY

done

三、脚本运行结果

[root@control python]# /scripts/create_file.sh

[root@control python]# ll

total 0

-rw-r--r-- 1 root root 0 Jun 15 04:26 4272db00_hcie.PY

-rw-r--r-- 1 root root 0 Jun 15 04:26 51989a58_hcie.PY

-rw-r--r-- 1 root root 0 Jun 15 04:26 75075364_hcie.PY

-rw-r--r-- 1 root root 0 Jun 15 04:26 7a272319_hcie.PY

-rw-r--r-- 1 root root 0 Jun 15 04:26 7d76af2f_hcie.PY

-rw-r--r-- 1 root root 0 Jun 15 04:26 977e73d6_hcie.PY

-rw-r--r-- 1 root root 0 Jun 15 04:26 9e4386a0_hcie.PY

-rw-r--r-- 1 root root 0 Jun 15 04:26 a35d5337_hcie.PY

-rw-r--r-- 1 root root 0 Jun 15 04:26 b9cb6458_hcie.PY

-rw-r--r-- 1 root root 0 Jun 15 04:26 b9d3349e_hcie.PY

-rw-r--r-- 1 root root 0 Jun 15 04:26 c3e589a2_hcie.PY

-rw-r--r-- 1 root root 0 Jun 15 04:26 e4f82be8_hcie.PY

总结

到此这篇关于Shell脚本之文件批量创建与修改的文章就介绍到这了。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值