summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsharkdp <davidpeter@web.de>2020-05-12 18:35:35 +0200
committersharkdp <davidpeter@web.de>2020-05-12 18:35:35 +0200
commit6ceba56288a0d05247d5b422a0d9c2ecb1c57896 (patch)
tree22df975e98043e6078dee680bb536540a416e636
parent4be66f8b8874f41913da68848360fa14a8be392c (diff)
Add 'mkdir -p …' to Ubuntu instructions, see #982
-rw-r--r--README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index 5fcd0380..0bf2f6b3 100644
--- a/README.md
+++ b/README.md
@@ -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
```