本文共 347 字,大约阅读时间需要 1 分钟。
环境:因为设备中没有计划任务来进行每天日志打包,磁盘空间小于20%,需要将部分日志未经过压缩打包,遂写此脚本来处理此现象。
#!/bin/bashls ./ > /tmp/lsname.txtcat /tmp/lsname.txt |grep -v ".gz$" > /tmp/newlsname.txtfor i in `cat /tmp/newlsname.txt`;do tar -czf $i.tar.gz $i if [ $? = 0 ];then rm -f $i else echo '2' fidone
转载于:https://blog.51cto.com/xiaoahehe/2129050