1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-03 22:57:18 +02:00

Updated How to Create a Folder for Each Movie. (markdown)

Devin Buhl 2017-01-22 15:10:01 -05:00
parent 9f76511be8
commit daa7f722d4

@ -15,5 +15,6 @@ I used a program called [Files 2 Folder](http://skwire.dcmembers.com/fp/?page=fi
# Linux
```sh
cd /path/to/your/movies/files/
find . -name "*.mkv" -exec sh -c 'mkdir "${1%.*}" ; mv "$1" "${1%.*}" ' _ {} \;
```