1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-03 13:54:29 +00:00

add linux cmd

Devin Buhl 2017-01-22 15:00:45 -05:00
parent 8c32f342e6
commit 9f76511be8

@ -1,3 +1,5 @@
# Windows
I used a program called [Files 2 Folder](http://skwire.dcmembers.com/fp/?page=files-2-folder) to make my movie library visible for import into Radarr, extract the zip to your computer and run the .exe as administrator, then click yes to add it to your right click menu.
1. Browse to your movie folder
@ -10,3 +12,8 @@ I used a program called [Files 2 Folder](http://skwire.dcmembers.com/fp/?page=fi
5. Each movie will be in its' own folder. ![](https://i.imgur.com/iawRm8o.jpg)
# Linux
```sh
find . -name "*.mkv" -exec sh -c 'mkdir "${1%.*}" ; mv "$1" "${1%.*}" ' _ {} \;
```