config/bash/README.md

10 lines
208 B
Markdown

Snippets you can source from your `.bash_profile`.
To install them all, copy them to ~/.bash.d and add this to your shell init script:
```
for partial in $(ls ~/.bash.d/*.sh); do
source $partial
done
```