dotfiles/bash_profile
Daniel Borchmann 5ad5e32b9f
Do not distinguish between login and non-login bash
I.e., move all bash related configuration to bashrc, and call it from
bash_profile.  This should make things easier, I hope.
2020-07-25 12:16:23 +02:00

7 lines
88 B
Bash

# -*- sh -*-
[[ -r /etc/bashrc ]] && . /etc/bashrc
[[ -r ~/.bashrc ]] && . ~/.bashrc