Exclude multiple files and directories with rsync

Exclude multiple files and directories with rsync

Rsync is very powerful tool to take backups, or sync files and directories between two different locations (or servers).

In a typical backup situation, you might want to exclude one or more files (or directories) from the backup. You might also want to exclude a specific file type from rsync. Following are some examples on how to do this:

1. EXCLUDE A SPECIFIC DIRECTORY

If you don’t want to sync the dir1 (including all it’s subdirectories) from the source to the destination folder, use the rsync –exclude option as shown below.

$ rsync -avz --exclude 'dir1' source/ destination/

2. EXCLUDE MULTIPLE DIRECTORIES THAT MATCHES A PATTERN

The following example will exclude any directory (or subdirectories) under source/ that matches the pattern “dir*”

$ rsync -avz --exclude 'dir*' source/ destination/

3. EXCLUDE A SPECIFIC FILE

To exclude a specific file, use the relative path of the file in the exclude option as shown below.

$ rsync -avz --exclude 'dir1/somefile.txt' source/ destination/

4. EXCLUDE A SPECIFIC FILE TYPE

To exclude a specific file type that has a specific extension, use the appropriate pattern. For example, to exclude all the files that contains .txt as extension, do the following.

$ rsync -avz --exclude '*.txt' source/ destination/

5. EXCLUDE MULTIPLES FILES AND DIRECTORIES AT THE SAME TIME

When you want to exclude multiple files and directories, you can always specify multiple rsync exclude options in the command line as shown below.

$ rsync -avz --exclude file1.txt --exclude dir3/file4.txt source/ destination/

So, the better way is to use rsync –exclude-from option as shown below, where you can list all the files (and directories) you want to exclude in a file.

First, create a text file with a list of all the files and directories you don’t want to backup. This is the list of files and directories you want to exclude from the rsync.

$ vim exclude-list.txt
file1.txt
dir3/file4.txt

Next, execute the rsync using –exclude-from option with the exclude-list.txt as shown below.

$ rsync -avz --exclude-from 'exclude-list.txt' source/ destination/
0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
What is OS Watcher Utility and How to use it for Database Troubleshooting ?
Viewed 30300 times since Thu, Jun 21, 2018
An easier way to manage disk decryption at boot with Red Hat Enterprise Linux 7.5 using NBDE
Viewed 7659 times since Mon, Aug 6, 2018
Szybkie sprawdzenie zewnętrznego adresu IP i hosta
Viewed 3441 times since Thu, May 24, 2018
BIND for the Small LAN
Viewed 3485 times since Sun, May 20, 2018
sed Delete / Remove ^M Carriage Return (Line Feed / CRLF) on Linux or Unix
Viewed 10399 times since Thu, Feb 7, 2019
7 Tips – Tuning Command Line History in Bash
Viewed 5500 times since Fri, Jul 5, 2019
RHEL: iSCSI target/initiator configuration on RHEL6
Viewed 8873 times since Sat, Jun 2, 2018
10 Linux rsync Examples to Exclude Files/Directories
Viewed 10999 times since Wed, Oct 31, 2018
RHCS6: Create a new Logical Volume / Global Filesystem 2 (GFS2)
Viewed 2332 times since Sun, Jun 3, 2018
Linux 16 Useful Bandwidth Monitoring Tools to Analyze Network Usage in Linux
Viewed 15505 times since Mon, Sep 21, 2020