do not add spaces to slash replacements (s_/_-_ and not s_/_ - _)

master
Karchnu 2021-04-30 01:22:30 +02:00
parent e8362b55da
commit 69e4cac809
1 changed files with 2 additions and 2 deletions

View File

@ -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"