From dda79ca840e01e308567a0d65dd819533a43c428 Mon Sep 17 00:00:00 2001 From: Linyos Torovoltos Date: Wed, 5 Jul 2017 15:48:24 -0400 Subject: [PATCH] Fixed bug (#40) Bug that wouldn't allow for more than one space in qrify --- qrify/qrify | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qrify/qrify b/qrify/qrify index 79f5c36..39f6bd4 100755 --- a/qrify/qrify +++ b/qrify/qrify @@ -71,7 +71,7 @@ httpGet() makeqr() { - input=$(echo $input | sed s/" "/%20/ ) + input=$(echo $input | sed s/" "/%20/g ) httpGet qrenco.de/$input }