From 69e4cac8095446f615e9541dbc5e3a45a651f6ba Mon Sep 17 00:00:00 2001 From: Karchnu Date: Fri, 30 Apr 2021 01:22:30 +0200 Subject: [PATCH] do not add spaces to slash replacements (s_/_-_ and not s_/_ - _) --- get-tracks.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/get-tracks.sh b/get-tracks.sh index 5ff9a30..b396110 100755 --- a/get-tracks.sh +++ b/get-tracks.sh @@ -29,8 +29,8 @@ regroup_lines() awk ' # From ’ to ' simple_quote() sed "s/e2 80 99/27/g" -# From / to ' - ' -replace_slashes() sed "s/2f/20 2d 20/g" +# From / to '-' +replace_slashes() sed "s/2f/2d/g" remove_multibyte_characters() sed "s/e2 80 .. //g"