mirror of
https://github.com/Radarr/Radarr
synced 2025-01-03 13:54:29 +00:00
add linux cmd
parent
8c32f342e6
commit
9f76511be8
1 changed files with 7 additions and 0 deletions
|
@ -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%.*}" ' _ {} \;
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue