til/Applications/exa.md

20 lines
354 B
Markdown
Raw Normal View History

2020-05-19 18:21:59 +00:00
# [exa](https://github.com/ogham/exa)
| Distribution | Package |
| ------------ | ---------- |
2020-05-24 10:44:40 +00:00
| Arch Linux | `exa` |
2020-05-19 18:21:59 +00:00
| Ubuntu | `rust-exa` |
2020-05-22 06:22:41 +00:00
| Homebrew | `exa` |
2020-05-19 18:21:59 +00:00
Add to `~/.bashrc`:
```bash
2020-05-24 10:44:40 +00:00
# Arch Linux, Ubuntu
2020-05-19 18:21:59 +00:00
[[ -f /usr/bin/exa ]] && \
alias ls="exa"
2020-05-22 06:22:41 +00:00
# Homebrew
[[ -f /usr/local/bin/exa ]] && \
alias ls="exa"
2020-05-19 18:21:59 +00:00
```