Created
February 25, 2018 21:35
-
-
Save thbkrkr/e8f0649288f512ec0753520d0801aa66 to your computer and use it in GitHub Desktop.
mvmkv
This file contains hidden or 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
| #/bin/bash -eu | |
| find ~/series/wip -name "*.mkv" -exec mv {} ~/series \; | |
| find ~/series/wip -name "*.nfo" -exec rm -f {} ~/series \; | |
| find ~/series/wip -name "*.srt" -exec rm -f {} ~/series \; | |
| find ~/series/wip -name "*.txt" -exec rm -f {} ~/series \; | |
| find ~/series/wip -type -d empty -exec rmdir {} \; | |
| cd ~/series | |
| srtmv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment