24 lines
729 B
Markdown
24 lines
729 B
Markdown
# Bash-Autocomplete-Extra
|
|
|
|
The name speaks for itself.
|
|
|
|
## Install
|
|
|
|
As I use this repository for programs that are available only for my user I added this to my `~/.bashrc` file
|
|
```bash
|
|
if [[ -d ~/.local/share/bash-completions/completions/ ]]; then
|
|
for f in ~/.local/share/bash-completions/completions/*; do
|
|
[[ -f "$f" && -r "$f" ]] && . "$f"
|
|
done
|
|
fi
|
|
```
|
|
|
|
This repository is 'based' in `~/.local/share/bash-completions/` folder so BE AWARE what next commands do
|
|
```bash
|
|
mkdir -p ~/.local/share/
|
|
git clone https://git.qowevisa.me/qowevisa/bash-autocomplete-extra ~/.local/share/bash-completions/
|
|
# optional but if you want to get rid of the README.md file I don't mind
|
|
cd ~/.local/share/bash-completions/
|
|
rm README.md
|
|
```
|