Christian
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
1 deletions
-
lgsm/functions/info_distro.sh
|
|
@ -73,8 +73,10 @@ glibcversion=$(ldd --version | sed -n '1s/.* //p') |
|
|
|
# e.g: tmux 1.6 |
|
|
|
if [ ! "$(command -V tmux 2>/dev/null)" ]; then |
|
|
|
tmuxv="${red}NOT INSTALLED!${default}" |
|
|
|
tmuxvdigit="0" |
|
|
|
else |
|
|
|
if [ "$(tmux -V | sed "s/tmux //" | sed -n '1 p' | tr -cd '[:digit:]')" -lt "16" ]; then |
|
|
|
tmuxvdigit="$(tmux -V | sed "s/tmux //" | sed -n '1 p' | tr -cd '[:digit:]')" |
|
|
|
if [ "${tmuxvdigit}" -lt "16" ]; then |
|
|
|
tmuxv="$(tmux -V) (>= 1.6 required for console log)" |
|
|
|
else |
|
|
|
tmuxv=$(tmux -V) |
|
|
|