• 0 Posts
  • 7 Comments
Joined 4 months ago
cake
Cake day: February 19th, 2026

help-circle




  • 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:
    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)