Linux Shell: The simplest system backup script in history

Source: Internet
Author: User

#!/bin/bash# the is script backup /etc directory! # author: zhangjun  (e-maill: [email protected]) date=$ (date +%y%m%d) size=$ (du  -SH /ETC) if [ -d /tmp/dbbak ]         then                echo  "date:  $date!"  > /tmp/dbbak/dbinfo.txt                 echo  "size:  $size!"  >> /tmp/dbbak/dbinfo.txt                 cd /tmp/dbbak                 tar -zcf etc_$date.tar.gz /etc dbinfo.txt & > /dev/null                rm -rf /tmp/dbbak/dbinfo.txt         Else                mkdir  /tmp/dbbak                 echo  "date:  $date!"  > /tmp/dbbak/dbinfo.txt                 echo  "size:  $size!"  >> /tmp/dbbak/dbinfo.txt                 cd /tmp/dbbak                 tar -zcf etc_$date.tar.gz /etc dbinfo.txt & > /dev/null                 rm -rf /tmp/dbbak/dbinfo.txtfi


This article is from the "BOM water Year _" blog, please be sure to keep this source http://timefiles.blog.51cto.com/8475652/1786625

Linux Shell: The simplest system backup script in history

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.