Reorganize bash_aliases entirely, add some readme.

This commit is contained in:
Anna Wiggins 2017-03-17 15:36:31 -07:00
parent bd95a93220
commit 63c5cb05bc
No known key found for this signature in database
GPG key ID: 682893DD0448ED78
5 changed files with 27 additions and 13 deletions

9
bash/README.md Normal file
View file

@ -0,0 +1,9 @@
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
```