rsync command exclude files and folders (Exclude-from)

Source: Internet
Author: User
Tags ssh rsync backup
Today, when configuring the server sync amount, you need to eliminate some infrequently updated or folder content too much, improve synchronization efficiency, through the test through rsync Exclude-from can achieve  

Suppose the first command is like this
Rsync-e ' ssh-p 30000 '-avl--delete--stats--progress demo@123.45.67.890:/home/demo/backup/

First, exclude separate folders and files

to exclude the Sources folder, we can add the '--exclude ' option:

--exclude ' sources '

The command is:
rsync-e ' ssh-p 30000 '-avl--delete--stats--progress--exclude ' sources ' demo@123.45.67.890:/home/demo/ backup/

To exclude the "database.txt" file under the "public_html" folder:

--exclude ' public_html/database.txt '

command is this Kind of:
Rsync-e ' ssh-p 30000 '-avl--delete--stats--progress '--exclude ' sources ' demo@123.45.67.890:/home/demo/backup/

II, use '--exclude-from ' to exclude multiple folders and files

To create a file:
/ Home/backup/exclude.txt

Defines the folders and files that you want to exclude
sources
public_html/database.*
downloads/test/*

Test General
Folder
uploads
download/softs/

Use directive:
--exclude-from '/home/backup/exclude . txt '

The last command is as follows:
Rsync-e ' ssh-p 30000 '-avl--delete--stats--progress--exclude-from '/home/backup/exclude.txt ' demo@123.45.67.890 :/home/demo/backup/

rsync How to implement the directory under the target path synchronization, do not synchronize files under the path, only want to sync directories

Copy Code code as follows:


Rsync-av--delete-f ' + */'-f '-* ' src/dest/

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.