Filtering with AND Parameter

I'd like to find files with BOTH expert and max filename or another words AND function

Using rclone ls --filter-from

+ *expert*
+ *max*
- *

This yields OR function.
I'm getting,
expert.hello.txt
max.hi.txt
expert.max.op.txt

What I need is just expert.max.op.txt which has BOTH expert and max.

Any workaround to getting the AND function for filtering filenames.

Yep. Small example.

felix@gemini:~/test$ rclone ls /home/felix/test
        0 expert
        0 export
        0 exportandmax
        0 one
felix@gemini:~/test$ rclone ls /home/felix/test --include '*export*max*'
        0 exportandmax

So you just put

+ *expert*max*

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.