Skip to content

Instantly share code, notes, and snippets.

@juanghurtado
Last active April 19, 2016 15:14
Show Gist options
  • Save juanghurtado/b907641bbdeb3fba1678 to your computer and use it in GitHub Desktop.
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)
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