Page 1 of 1

UFC filter trying to filter out Prelims from result

Posted: 04 Jun 2020, 14:17
by syralk
Hi i'm trying to do a CLI auto renamer but it keep giving me the prelims

filebot -rename --db TheMovieDB -non-strict --action test "UFC Fight Night 171"

When I look at the result is giving me this list

UFC Fight Night 171 Prelims (2020)
UFC Fight Night 171: Smith vs. Teixeira (2020)
Knockabout (1979)
The Fight (2007)

is there a way to filter out any Prelims?

Re: UFC filter trying to filter out Prelims from result

Posted: 04 Jun 2020, 16:31
by rednoah
You could try the --filter option:
viewtopic.php?t=2127

e.g.

Code: Select all

--filter '!(n =~ /Prelims/)'

Re: UFC filter trying to filter out Prelims from result

Posted: 04 Jun 2020, 18:18
by syralk
thanks it works :)