update readme

This commit is contained in:
Tomasz Kapias 2023-03-19 23:35:45 +07:00
parent b5f955f6a5
commit a3e380351d
Signed by: tkapias
SSH key fingerprint: SHA256:bsmasrX7y0xxAHa/x1x8zAgHInO4nPpKMk5JIQ0Vsbw

View file

@ -48,11 +48,13 @@
- With APT: - With APT:
```bash ```bash
# check version with apt # check version and repository with apt
sudo apt show -a tmux 2> /dev/null | grep Version: 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 # if your apt repositories deliver at least 3.3, you can install it
sudo apt install tmux sudo apt install tmux
# or if there is a specific repository
sudo apt -t repo-backports install tmux
``` ```
- Or build & install: - 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: - With APT:
```bash ```bash
# check version with apt # check version and repository with apt
sudo apt show -a fzf 2> /dev/null | grep Version: 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 # if your apt repositories deliver at least 0.35, you can install it
sudo apt install fzf sudo apt install fzf
# or if there is a specific repository
sudo apt -t repo-backports install fzf
``` ```
- Or build & install: - Or build & install: