shell 脚本(批量创建脚本)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 脚本(批量创建脚本)相关的知识,希望对你有一定的参考价值。

while ;(创建文20个文件)

 cd /etc/services

mkdir -p scripts

vim scirpts .sh 

#!/bin/bash 

i= 1 ,dir=/scirpts 

while [ $i -lt 21 ]


do  touch dir/test$i

      let i = $i+1



done 

批量改名:

#!/bin/bash 

i= 1 ,dir=/scirpts 

while [ $i -lt 21 ]


do mv dir/ test $i alex$i

      let i = $i+1



done 

删除询问:


for file in dir/*


 do rm -i $file 


done 



首先要创建环境

#!/bin/bash

shopt -s expand _aliases

aliases=ll=‘‘ll -s ‘‘

cd /root /scripts/test/alex

if [ ! -e alex ]

then  

       /bin/mkdir -p alex

else 

     echo" ‘‘

fi

   path=/root /scripts/test/alex

    cd $path

for i ( i=1;i<10;i++)

do 

   /bin/tuoch alex-$i finshed .jgp

done 




 变量子串结尾删除最短匹配

for file in ls *.jpg

do 

    mv $file  ${file %fiinshed*}.jpg

done 
















以上是关于shell 脚本(批量创建脚本)的主要内容,如果未能解决你的问题,请参考以下文章

Shell脚本实战之文件批量创建和修改

shell脚本案例批量创建用户

Shell脚本批量创建用户并随机生成密码

shell脚本第一篇——自定义创建用户和批量创建用户

shell脚本for循环批量创建用户

使用shell脚本批量创建用户