From 98e15f8412f833ad25a5cdcb8fa24f67f3ee9dfd 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" "$@"