Skip to content

Instantly share code, notes, and snippets.

View dilirity's full-sized avatar
🎸
...and his music was electric

Peter Petrov dilirity

🎸
...and his music was electric
View GitHub Profile
@dilirity
dilirity / fix-rarbg-subtitles-tv-shows.sh
Last active December 15, 2022 20:45
For rarbg TV shows. This is a small script I wrote to copy subtitles where the episodes are and name them accordingly, so players can detect and load them correctly.
#!/bin/bash
# Put inside root of TV series folder.
# Run using:
# bash fix-rarbg-subtitles-tv-shows.sh
seasons=$(find $1 -mindepth 1 -maxdepth 1 -type d)
for season in $seasons; do
season_subs_folder="${season}/Subs"