Yes. Just to add, not everything hard links for me due to files being seeded (and locked) straight after it’s done downloading, so later I go back and fix the bulk by entering the download folder and typing:
To list files that weren’t hard linked:
cd /path/to/downloads/
find . -links 1 -type f | grep ".mp4$\|.mkv$" | sort > ../fixthese.txt
And going through the list and either reimporting manually via *arr>Wanted>Import manually, or
omitting certain shows from the command once you’re certain all the unlinked are unwanted extras with:
Yes. Just to add, not everything hard links for me due to files being seeded (and locked) straight after it’s done downloading, so later I go back and fix the bulk by entering the download folder and typing:
cd /path/to/downloads/ find . -links 1 -type f | grep ".mp4$\|.mkv$" | sort > ../fixthese.txtAnd going through the list and either reimporting manually via *arr>Wanted>Import manually, or
find . -links 1 -type f | grep ".mp4$\|.mkv$" | grep -vE "./(Band.Of.Brothers|The Boys|Westworld|.*\] (Attack On Titan|JoJo)|.*ample.mkv$)" | sort > ../fixthese.txt( “./(|…” covers most shows, “*] (|…” covers files starting with e.g. [Anime Time], and “.*ample.mkv$” covered my ‘sample’ and “Sample” videos)