Browse Source

merge only mp3, not other stuff in the folder

master
marc 4 years ago
parent
commit
a22d2a3670
1 changed files with 1 additions and 9 deletions
  1. 10
      .config/scripts/mp3cat_all_subdirs.sh

10
.config/scripts/mp3cat_all_subdirs.sh

@ -4,17 +4,9 @@ for d in ./*; do
f=${d:2}
cd "$d"
echo ${f}.mp3
mp3cat -c 1 ./* -o "${f}.mp3"
mp3cat -c 1 ./*.mp3 -o "${f}.mp3"
mv "${f}.mp3" ../
cd ..
# echo $f
# echo $d
# cd "$d"
# ls
# cd ..
# echo "$d"
fi
done
#mp3cat -c 1 ./* -o name.mp3
Loading…
Cancel
Save