From ec06ef45d19a1a76462e5f871e0c40ce6c5b4f4e Mon Sep 17 00:00:00 2001
From: =?utf8?q?Paul=20H=C3=A4nsch?= <paul@plutz.net>
Date: Wed, 18 Jul 2018 16:28:40 +0200
Subject: [PATCH] bugfix: pipeline use for STRING()

---
 storage.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/storage.sh b/storage.sh
index fd75820..0d09b26 100755
--- a/storage.sh
+++ b/storage.sh
@@ -74,7 +74,7 @@ STRING='
 
 STRING(){
   { [ $# -eq 0 ] && cat || printf %s "$*"; } \
-  | printf %s "$*" |sed -r ':X; $!{N;bX;}'"$STRING"
+  | sed -r ':X; $!{N;bX;}'"$STRING"
 }
 
 UNSTRING='
-- 
2.39.5