dotfiles/bash/.bash_profile
2020-09-30 16:03:08 -04:00

10 lines
365 B
Bash

# .bash_profile is *not* sourced when launching bash from some GUI terminal emulators
# However, it *is* sourced when logging in via TTY or ssh.
# Due to this somewhat inconsistent behaviour, I ended up putting everything in
# .bashrc, which is more or less guarunteed to be sourced no matter what.
# [ -f "$HOME/.bashrc" ] && source "$HOME/.bashrc"
# vim:ft=sh