mirror of
https://github.com/pisto/oggify
synced 2025-12-13 20:26:30 +00:00
Do not strip \0 in filenames
unlikely that strings in bash can hold them in any case
This commit is contained in:
parent
99f61a7e85
commit
9d76391b17
1 changed files with 1 additions and 1 deletions
2
tag_ogg
2
tag_ogg
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
fname=$(echo "${4} - ${2}.ogg" | tr '/' - | tr '\0' ' ')
|
fname=$(echo "${4} - ${2}.ogg" | tr '/' -)
|
||||||
cat > "$fname"
|
cat > "$fname"
|
||||||
{
|
{
|
||||||
echo "SPOTIFY_ID=${1}"
|
echo "SPOTIFY_ID=${1}"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue