Created
April 9, 2023 21:13
-
-
Save djhunter67/83db4d476d9325dc82ce7dd000f73d59 to your computer and use it in GitHub Desktop.
unrar all the things
This file contains 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
# Must first go to the proper directory | |
for dir in $(find ./ -type d); do | |
if [ -f ${dir}/*.mkv ]; then | |
echo "skipping $dir ..." | |
continue | |
fi | |
unrar x $dir/*.rar $dir/ | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment