[AMC] Ignore a show

Running FileBot from the console, Groovy scripting, shell scripts, etc
Post Reply
tluit
Posts: 2
Joined: 25 Mar 2014, 11:42

[AMC] Ignore a show

Post by tluit »

I use the uTorrent RSS downloader + AMC Filebot program. This works great, except for the show American Dad! (because of the TVDB numbering).

Is there to let AMC ignore this show? I can't seem to figure out how the --def ignore parameter works.
User avatar
rednoah
The Source
Posts: 23940
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: [AMC] Ignore a show

Post by rednoah »

Have you tried?

Code: Select all

--def ignore=American.Dad
:idea: Please read the FAQ and How to Request Help.
tluit
Posts: 2
Joined: 25 Mar 2014, 11:42

Re: [AMC] Ignore a show

Post by tluit »

Hrm, I feel silly now...

I tried --def ignore American*, ignore American[.]* but not what you suggested. It works, thank you very much.
Tweak_four17
Donor
Posts: 53
Joined: 24 Apr 2014, 19:30

Re: [AMC] Ignore a show

Post by Tweak_four17 »

Is this case sensitive? I had --def ignore=American.dad and it processed it anyways, when i changed the script to american.dad it skipped it but the file could be American.dad or American.Dad etc. If it is case sensitive as it seems what is the best way to filter multiple? multiple --def ignore or can you use semi colon or pipes or something to make a list?
User avatar
rednoah
The Source
Posts: 23940
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: [AMC] Ignore a show

Post by rednoah »

It uses the regex as is, so it's case-sensitive by default. But you can always flip a switch:

Code: Select all

--def "ignore=(?i)American.Dad|Some.Other.Show"
So it's 1 single regex. But that single regex can easily match many different patterns.
:idea: Please read the FAQ and How to Request Help.
Tweak_four17
Donor
Posts: 53
Joined: 24 Apr 2014, 19:30

Re: [AMC] Ignore a show

Post by Tweak_four17 »

Thanks! I figured it was possible to filter multiple things but everything I tried just threw up errors lol.
Post Reply