From ebce73c797adc31095da5c61b2cba2bcbc11e142 Mon Sep 17 00:00:00 2001 From: Viyurz <128215328+Viyurz@users.noreply.github.com> Date: Fri, 27 Oct 2023 13:02:00 +0200 Subject: [PATCH] kill-wine-explorer.sh: Redirect stdout & stderr to /dev/null --- .scripts/kill-wine-explorer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scripts/kill-wine-explorer.sh b/.scripts/kill-wine-explorer.sh index c836f4a..009d211 100755 --- a/.scripts/kill-wine-explorer.sh +++ b/.scripts/kill-wine-explorer.sh @@ -1,6 +1,6 @@ #!/bin/sh while true; do - killall -9 explorer.exe + killall -9 explorer.exe &> /dev/null sleep 5 done