Code: Select all
filebot -rename -r /input --output /output --action hardlink --db file --format "{ fn.clean() }" --file-filter "none{ f.age > 1 }{ f.linkCount > 1 }{ f.clutter }"
Code: Select all
[HARDLINK] from [/input/[ONe]_Ano_Hana_01_(1280x720_DVD_AC3)_[A1B2C3D4].mkv] to [/output/Ano Hana 01.mkv]
-r ... select files from the /input folder and subfolders recursively
--format ... generate new file names based on the current file name with clutter patterns stripped away:
Code: Select all
{ fn.clean() }
Code: Select all
none{ f.age > 1 }{ f.linkCount > 1 }{ f.clutter }
f.linkCount ... link count of f
f.clutter ... true if f is a clutter file (e.g. trailer, sample, artwork, subtitle, etc)

