Linux 批量解压gz包
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 批量解压gz包相关的知识,希望对你有一定的参考价值。
[[email protected] export]# vi gunzip.sh
!/bin/bash
path=/export/backup ----备份文件目录路径
for i in `ls ${path}/*`
do
/bin/gunzip $i
done
[[email protected] export]# chmod +x gunzip.sh
[[email protected] export]# sh gunzip.sh
==========================================
#!/bin/bash
#dir=/export/data/mysql/dumps/`date +%F -d yesterday`
dir=/export/data/mysql/dumps/`date +%F`
gunzip=$(find $dir -name "*.sql.gz")
for i in $gunzip
do
(gunzip $i) &
done
以上是关于Linux 批量解压gz包的主要内容,如果未能解决你的问题,请参考以下文章
Deepin 20系统Linux系统批量解压*.gz文件(不是.tar.gz)
Deepin 20系统Linux系统批量解压*.gz文件(不是.tar.gz)
Python遥感图像处理应用篇:Python批量解压Landsat8-tar.gz格式中的指定波段数据