Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,23 @@ A command line client for tldr, written in plain ISO C90.

On OS X, the client can be installed through [homebrew](http://brew.sh/).

```
```shell
# To install latest development version
brew install tldr --HEAD

# To install the latest stable release
brew install tldr
```

To build the latest version from source:
On Arch Linux, the client can be installed through [the AUR](https://aur.archlinux.org/packages/tldr-git) using an AUR helper such as yay.

```shell
yay -S tldr-git
```

To build the latest version from source:

```shell
git clone https://github.com/tldr-pages/tldr-c-client.git
cd tldr-c-client

Expand Down Expand Up @@ -68,7 +75,7 @@ to access directory (like your home directory), and source it in your `.bashrc`

Example for zsh:

```
```shell
mv autocomplete/complete.zsh ~/.tldr.complete
echo "source ~/.tldr.complete" >> ~/.zshrc
```
Expand Down