From dbe02b70feb9a4fb48037914a66d33f966ddb6df Mon Sep 17 00:00:00 2001 From: aknisly <65037826+aknisly@users.noreply.github.com> Date: Thu, 23 Mar 2023 09:24:26 -0500 Subject: [PATCH] Update appendix-d-filters.md Added note about selecting filter groups in the UI. --- docs/appendix-d-filters.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/appendix-d-filters.md b/docs/appendix-d-filters.md index 81b54f5..0a039d5 100644 --- a/docs/appendix-d-filters.md +++ b/docs/appendix-d-filters.md @@ -21,7 +21,7 @@ If you want to use file globbing to specify rules, `?` and `*` are allowed place Rules can also be specified as regular expression. In this case put the regular expression (using [.NET syntax](https://docs.microsoft.com/en-us/dotnet/standard/base-types/regular-expression-language-quick-reference)) into hard brackets `[]`. For example, `[.*/IMG_\d{4}\.jpg]` would specify all files named `IMG_0000.jpg` through `IMG_9999.jpg`. -Duplicati also has several built-in filter groups, which define set of well-known files and folders for different operating systems. These can be specified by putting the names or aliases of the desired groups inside curly brackets `{}` separated by commas `,`, for example, `{SystemFiles,OperatingSystem}`. The following groups are currently defined: +Duplicati also has several built-in filter groups, which define set of well-known files and folders for different operating systems. These can be specified by putting the names or aliases of the desired groups inside curly brackets `{}` separated by commas `,`, for example, `{SystemFiles,OperatingSystem}`. In the UI, you can select these via a dropdown in the right column by selecting 'Exclude filter group' from the dropdown in the left column. The following groups are currently defined: - **SystemFiles** Files and paths that are owned by the operating system or are not real files. @@ -115,4 +115,4 @@ docker exec duplicati mono /app/duplicati/Duplicati.CommandLine.exe test-filters --exclude="[/mnt/[^/]*/.*\.log]" ``` -**Building Regular Expressions:** There are lots of online services such as [Skinners RegExp engine](https://regexr.com) to help build correct regular expressions. \ No newline at end of file +**Building Regular Expressions:** There are lots of online services such as [Skinners RegExp engine](https://regexr.com) to help build correct regular expressions.