From a3e380351db90363252dfd938a0e7a03f26b721f Mon Sep 17 00:00:00 2001 From: Tomasz Kapias Date: Sun, 19 Mar 2023 23:35:45 +0700 Subject: [PATCH] update readme --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 91968b3..253b334 100644 --- a/README.md +++ b/README.md @@ -48,11 +48,13 @@ - With APT: ```bash -# check version with apt -sudo apt show -a tmux 2> /dev/null | grep Version: +# check version and repository with apt +sudo apt show -a tmux 2> /dev/null | grep -E 'Version:|APT-Sources:' # if your apt repositories deliver at least 3.3, you can install it sudo apt install tmux +# or if there is a specific repository +sudo apt -t repo-backports install tmux ``` - Or build & install: @@ -85,11 +87,13 @@ wget -c -nv "$_URL" -O - | sudo tar --no-same-owner -xzv -C /usr/local/bin gitmu - With APT: ```bash -# check version with apt -sudo apt show -a fzf 2> /dev/null | grep Version: +# check version and repository with apt +sudo apt show -a fzf 2> /dev/null | grep -E 'Version:|APT-Sources:' # if your apt repositories deliver at least 0.35, you can install it sudo apt install fzf +# or if there is a specific repository +sudo apt -t repo-backports install fzf ``` - Or build & install: