From 7c03e38fec68d5253fe84f6da4f5463decebe209 Mon Sep 17 00:00:00 2001 From: Stoyan Marinov Date: Fri, 14 Feb 2020 20:57:27 +0000 Subject: [PATCH] use \\ instead of just \ in FileName --- tftpboot/ringtones/mkringlist.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tftpboot/ringtones/mkringlist.sh b/tftpboot/ringtones/mkringlist.sh index 598ce26..3403e45 100755 --- a/tftpboot/ringtones/mkringlist.sh +++ b/tftpboot/ringtones/mkringlist.sh @@ -6,7 +6,7 @@ if [ ! -z "`ls *.pcm 2>/dev/null`" ]; then basename=`basename ${filename} .pcm` echo -e "\t" >>$outfile echo -e "\t\t${basename}" >>$outfile - echo -e "\t\tringtones\${filename}" >>$outfile + echo -e "\t\tringtones\\${filename}" >>$outfile echo -e "\t" >>$outfile done fi @@ -15,7 +15,7 @@ if [ ! -z "`ls *.raw 2>/dev/null`" ]; then basename=`basename ${filename} .raw` echo -e "\t" >>$outfile echo -e "\t\t${basename}" >>$outfile - echo -e "\t\tringtones\${filename}" >>$outfile + echo -e "\t\tringtones\\${filename}" >>$outfile echo -e "\t" >>$outfile done fi