mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 07:24:39 +01:00
9 lines
183 B
Bash
9 lines
183 B
Bash
## bash_profile, called for login shells
|
|
|
|
# include .profile
|
|
source ~/.profile
|
|
|
|
# include bashrc too if this is an interactive shell
|
|
[[ $- == *i* ]] && source ~/.bashrc
|
|
|
|
# vim: ft=sh
|