Add 'mkdir -p …' to Ubuntu instructions, see #982

This commit is contained in:
sharkdp 2020-05-12 18:35:35 +02:00
parent 4be66f8b88
commit 6ceba56288
1 changed files with 1 additions and 0 deletions

View File

@ -185,6 +185,7 @@ apt install bat
If you install `bat` this way, please note that the executable may be installed as `batcat` instead of `bat` (due to [a name
clash with another package](https://github.com/sharkdp/bat/issues/982)). You can set up a `bat -> batcat` symlink or alias to prevent any issues that may come up because of this and to be consistent with other distrutions:
``` bash
mkdir -p ~/.local/bin
ln -s /usr/bin/batcat ~/.local/bin/bat
```