From d81fc7929486958e1d63169f77039ed83e0de5e3 Mon Sep 17 00:00:00 2001 From: Hektor Misplon Date: Fri, 31 Dec 2021 12:48:10 +0100 Subject: [PATCH] Quote variable --- .bin/notify-pipe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.bin/notify-pipe b/.bin/notify-pipe index 558da71..4ca5c1a 100755 --- a/.bin/notify-pipe +++ b/.bin/notify-pipe @@ -1,4 +1,4 @@ #!/usr/bin/env bash -read msg -notify-send $msg "$@" +read -r msg +notify-send "$msg" "$@"