From 6d926d60a504b566b502d2a7612c2391d9db6201 Mon Sep 17 00:00:00 2001 From: diegantobass Date: Tue, 24 Jun 2025 06:35:37 +0200 Subject: [PATCH] correct stupid variable mistakes --- bandcamp_format_utility.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bandcamp_format_utility.sh b/bandcamp_format_utility.sh index d375d7d..bcb8b7e 100755 --- a/bandcamp_format_utility.sh +++ b/bandcamp_format_utility.sh @@ -34,5 +34,5 @@ for f in $files; new_name=$(printf '%02d - %s.mp3' "$track_number" "$track") mkdir -p "$artist" mkdir -p "$artist/$album" - mv "$f" "$artist/$album/$file_name" + mv "$f" "$artist/$album/$new_name" done