main
Tran Hau 2020-05-20 01:21:59 +07:00
parent 9a6ec22f46
commit ae3c7ce839
5 changed files with 38 additions and 3 deletions

View File

@ -8,7 +8,9 @@
[Neovim](neovim.md): `vim` fork.
[bat](https://github.com/sharkdp/bat): `cat` with colors.
[exa](exa.md): `ls` replacement.
[bat](bat.md): `cat` with colors.
[fd](https://github.com/sharkdp/fd): simple `find`.
@ -16,8 +18,6 @@
[diff-so-fancy](https://github.com/so-fancy/diff-so-fancy): `diff` with human readable.
[exa](https://github.com/ogham/exa): `ls` replacement.
[tldr](https://github.com/tldr-pages/tldr): simple `man`.
[Ncat](ncat.md): Netcat implementation from Nmap project.

13
Applications/bat.md Normal file
View File

@ -0,0 +1,13 @@
# [bat](https://github.com/sharkdp/bat)
| Distribution | Package |
| ------------ | ---------- |
| Archlinux | `bat` |
| Ubuntu | `rust-bat` |
Add to `~/.bashrc`:
```bash
[[ -f /usr/bin/bat ]] && \
alias cat="bat"
```

13
Applications/exa.md Normal file
View File

@ -0,0 +1,13 @@
# [exa](https://github.com/ogham/exa)
| Distribution | Package |
| ------------ | ---------- |
| Archlinux | `exa` |
| Ubuntu | `rust-exa` |
Add to `~/.bashrc`:
```bash
[[ -f /usr/bin/exa ]] && \
alias ls="exa"
```

View File

@ -9,4 +9,7 @@ Add to `~/.bashrc`:
```bash
export EDITOR=nvim
[[ -f /usr/bin/nvim ]] && \
alias vim="nvim"
```

6
Development/ansible.md Normal file
View File

@ -0,0 +1,6 @@
# Ansible
| Distribution | Package |
| ------------ | --------- |
| Archlinux | `ansible` |
| Ubuntu | `ansible` |