From e364995dcd2ce727d9af8eb826ae8681ec7d5b7e Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 3 Oct 2019 13:24:52 -0700 Subject: [PATCH] Appending '\0' to commandfile so subsequent writes don't get screwed up. --- bbstartup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/bbstartup.sh b/bbstartup.sh index f8ca71b..059bc09 100755 --- a/bbstartup.sh +++ b/bbstartup.sh @@ -29,3 +29,4 @@ elif [ -e "$sysconfdir/xdg/bb/bindings.bb" ]; then elif [ -e bindings.bb ]; then cat bindings.bb fi | sed -e '/^#/d' -e "s/^[^ ]/$(printf '\034')+bind:\\0/" | tr '\034' '\0' >> "$BBCMD" +printf '\0' >> "$BBCMD"