Created
May 23, 2023 20:13
-
-
Save kylemsguy/9db13e208e929070a3180a0c92af403a to your computer and use it in GitHub Desktop.
Recursively strip 1 from converted iTunes music files
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
for i in * | |
do | |
cd $i | |
for j in *.m4a | |
do | |
mv "$j" ${j%" 1.m4a"}.m4a | |
done | |
cd .. | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment