From 8a714b00cb9052ecf4a772ce4b64525abff558f4 Mon Sep 17 00:00:00 2001 From: Ilija Matoski Date: Sun, 1 Mar 2015 18:19:52 +0100 Subject: [PATCH] $(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]') doesn't work on some version of bash unless [:digit:] is enclosed in qoutes --- functions/fn_details_distro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/fn_details_distro b/functions/fn_details_distro index 378146df8..0748fbbad 100644 --- a/functions/fn_details_distro +++ b/functions/fn_details_distro @@ -29,7 +29,7 @@ glibcv=$(ldd --version |grep ldd|awk '{print $NF}') # e.g: tmux 1.6 if [ -z "$(command -v tmux)" ]; then tmuxv="\e[0;31mNOT INSTALLED!\e[0m" -elif [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd [:digit:])" -lt "16" ]; then +elif [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]')" -lt "16" ]; then tmuxv="$(tmux -V) (>= 1.6 required for console log)" else tmuxv=$(tmux -V)