Scripts for ~/.basshrc.d
| aliases.sh | ||
| git.sh | ||
| LICENSE | ||
| password-store.sh | ||
| ps1.bash | ||
| README.md | ||
| ssh.sh | ||
| symfony.sh | ||
| vars.sh | ||
| vim.sh | ||
bashrcd
Scripts for ~/.basshrc.d
Installation
Clone this repository to ~/.bashrc.d.
git clone https://git.mydevel.at/chris/bashrcd.git ~/.bashrc.d
Add following code to your ~/.bashrc file:
if [ -d ~/.bashrc.d ]; then
for i in `ls ~/.bashrc.d/*.sh ~/.bashrc.d/*.bash`; do
[ -f "$i" ] && . "$i"
done
fi