From 048758e4c4e71680c968c8fa121d723ba7171f85 Mon Sep 17 00:00:00 2001 From: Ahurac Date: Tue, 26 Mar 2024 23:28:18 +0100 Subject: [PATCH] qemush : commande `shell`, suppression `case` inutile --- bin/qemush | 5 ----- 1 file changed, 5 deletions(-) diff --git a/bin/qemush b/bin/qemush index b62f7a2..d2e00d4 100755 --- a/bin/qemush +++ b/bin/qemush @@ -163,11 +163,6 @@ public_shell() { [ -z "$SHELL" ] && SHELL=sh set -- "$SHELL" "$@" - case "$SHELL" in - sh|bash|zsh|ksh|mksh|oksh) - set -- "$@" -i - ;; - esac exec "$@" }