From 6715ac58f6ca08627743d25adbae38dd6ebfb48a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Tue, 26 Jan 2021 10:09:50 +0100 Subject: [PATCH] Use quotes for filename parameter. --- editvorbis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editvorbis.sh b/editvorbis.sh index 7bf6fef..d26545d 100755 --- a/editvorbis.sh +++ b/editvorbis.sh @@ -62,7 +62,7 @@ if [ $? == 1 ]; then fi # check if the file exists -if [ ! -f $1 ]; then +if [ ! -f "$1" ]; then echo "Regular file $1 does not exist." exit 1 fi