Ok thanks @rednoah
I also noticed that the copy times were strangely super fast
I wonder if I can execute 2 scipts at the end of DL. In order to scan 2 different HDDs?
The hardlink works very well, however I find it difficult to achieve certain orders.
On the one hand here is my functional code:
Code: Select all
/usr/local/bin/filebot -script fn:amc --output "/Volumes/HDD_3/Films" --action hardlink -non-strict "/Volumes/HDD_3/Torrents/DL" --log-file amc.log --def excludeList=amc.txt --def unsorted=y music=y artwork=n "ut_label=" "ut_kind=multi" --lang fr
I manage to separate the subcategories (Animation / Films):
Code: Select all
/usr/local/bin/filebot -script fn:amc --output "/Volumes/HDD_3/Films" --action hardlink -non-strict "/Volumes/HDD_3/Torrents/DL" --log-file amc.log --def excludeList=amc.txt --def unsorted=y music=y artwork=n "ut_label=" "ut_title=%N" "ut_kind=multi" "ut_dir=%F" movieFormat="{genres.contains('Animation') ? 'Animation' : 'Films'} /{plex.name}" --lang fr
Now I would like to have another entry in + ie 2 HDD.
Can I add a second line below? What syntax to adopt?
Here I put && knowing that it will not go :
Code: Select all
/usr/local/bin/filebot -script fn:amc --output "/Volumes/HDD_3/Films" --action hardlink -non-strict "/Volumes/HDD_3/Torrents/DL" --log-file amc.log --def excludeList=amc.txt --def unsorted=y music=y artwork=n "ut_label=" "ut_title=%N" "ut_kind=multi" "ut_dir=%F" movieFormat="{genres.contains('Animation') ? 'Animation' : 'Films'} /{plex.name}" --lang fr && /usr/local/bin/filebot -script fn:amc --output "/Volumes/HDD_2/Films" --action hardlink -non-strict "/Volumes/HDD_2/Torrents/DL" --log-file amc.log --def excludeList=amc.txt --def unsorted=y music=y artwork=n "ut_label=" "ut_title=%N" "ut_kind=multi" "ut_dir=%F" movieFormat="{genres.contains('Animation') ? 'Animation' : 'Films'} /{plex.name}" --lang fr