Last active
April 19, 2016 15:14
-
-
Save juanghurtado/b907641bbdeb3fba1678 to your computer and use it in GitHub Desktop.
Process tv shows and films download folders to move them to right Kodi folder (uses .sh scripts in previous gists)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find /storage/downloads/tvshows -type f \( ! -iname "*.part|.*" \) -exec /storage/move-tvshow-leaving-symlink-behind.sh {} \; | |
find /storage/downloads/films -type f \( ! -iname "*.part|.*" \) -exec /storage/move-film-leaving-symlink-behind.sh {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment