From 5e0f506bf33d740379b1d5bcd7642f786ed7d748 Mon Sep 17 00:00:00 2001 From: Sem Date: Mon, 20 Jul 2026 13:55:34 +0200 Subject: [PATCH] enable interpretation of backslash escapes --- fix_unknown_album_and_artist_flac_file.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fix_unknown_album_and_artist_flac_file.sh b/fix_unknown_album_and_artist_flac_file.sh index af2de25..1972346 100755 --- a/fix_unknown_album_and_artist_flac_file.sh +++ b/fix_unknown_album_and_artist_flac_file.sh @@ -26,10 +26,10 @@ function print_help() echo "script to fix where flac tags are set correctly but navidrome still sees them as having [Unknown album] and [Unknown artist]" echo "usage: fix_unknown_album_and_artist_flac_file.sh FILENAME [LOCATION] [-l]" echo "parameters:" - echo "\tFILENAME: file to fix. Can be a relative or absolute path" - echo "\tLOCATION: optional, location of the file, if the script is run from a different directory than where the file to fix is." - echo "\t-l LISTFILE: optional, location of file containing multiple files to fix, each starting with a new line. " - echo "\tThis is the same as running the script for each single file in the list" + echo -e "\tFILENAME: file to fix. Can be a relative or absolute path" + echo -e "\tLOCATION: optional, location of the file, if the script is run from a different directory than where the file to fix is." + echo -e "\t-l LISTFILE: optional, location of file containing multiple files to fix, each starting with a new line. " + echo -e "\tThis is the same as running the script for each single file in the list" } if [ -z "$1" ]