dukelsky
dukelsky
I removed the leading slash in all patterns, but the result is the same: borg peeks into `/proc` and `/run`.
I removed `--filter=-` from the command line, and now I see that borg lists everything in all "excluded" directories including /sys, /proc, /run etc. ``` x /proc/1872/task/1939/fdinfo/251 x /proc/1872/task/1939/fdinfo/253 x...
Thanks for the tip.
I want to include the special directories /dev, /proc, /run, /sys, but not their contents. I tried this: ``` + re:^(dev|proc|run|sys|tmp)$ ! re:^(dev|proc|run|sys|tmp) ``` But despite my expectations, there were...