I came along to need 2 filters applied with -api filter, however, one filter replaces the other.
How can I have both filters be valid?
The actual syntax is
-sep ", " -m -addtagsfromfile @ -api filter=""s/\s*\(.*//"" -api filter=""s/\s*\..*//""
Combine them by separating them with a semicolon ;
-api filter="s/\s*\(.*//;s/\s*\..*//"
Or simply like so: filter="s/\s*[(.].*//"
perfect. thank you. will try it out asap.