shell脚本之文件批量解压
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本之文件批量解压相关的知识,希望对你有一定的参考价值。
#!/bin/bash
ls /tmp/install_file/*.tar.gz > install_packge_name.log
for i in `cat install_packge_name.log`
do
tar -zxf $i -C /tmp/depress/ >> /dev/null #解压到/tmp/depress文件
done
以上是关于shell脚本之文件批量解压的主要内容,如果未能解决你的问题,请参考以下文章
shell之批量新增用户脚本(http-basic-auth)