mysql 备份解密脚本

本文介绍了一个使用Bash编写的脚本,用于遍历指定目录下的所有xbcrypt加密文件,对其进行解密并删除原加密文件。脚本通过递归函数getdir处理目录结构,实现了自动化解码流程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

#!/bin/bash
#by sk 备份解码脚本
echo "-------------------------------------------------"
function getdir(){
    #echo $1
    for file in $1/*
    do
    if test -f $file
    then
            echo $file
            if [ "${file##*.}" = "xbcrypt" ] ; then
                echo ${file%.*}
                xbcrypt -d --encrypt-key=jiamistring --encrypt-algo=AES256 -i $file -o ${file%.*}
                rm -rf $file
            fi;
            #arr=(${arr[*]} $file)
    else
            getdir $file
    fi
    done
}

function getdirrm(){
    #echo $1
    for file in $1/*
    do
    if test -f $file
    then
            echo $file
            if [ "${file##*.}" = "xbcrypt" ] ; then
                rm -rf $file
            fi;
            #arr=(${arr[*]} $file)
    else
            getdir $file
    fi
    done
}
#注意修改文件目录位置
getdir /data/backup/full/2018-02-01_16-55-43
getdirrm /data/backup/full/2018-02-01_16-55-43




#echo  ${arr[@]}
echo "----------------------------------------------------"

  

转载于:https://www.cnblogs.com/52shaidan/p/10106942.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值