Example of a UNIX exclude list
In this example of a UNIX exclude list, the list contains the following entries:
# this is a comment line
/home/doe/john
/home/doe/abc/
/home/*/test
/*/temp
coreGiven the exclude list example, the following files and directories are excluded from automatic backups:
The file or directory named /home/doe/john.
The directory /home/doe/abc (because the exclude entry ends with /).
All files or directories named test that are two levels beneath home.
All files or directories named temp that are two levels beneath the root directory.
All files or directories named core at any level.