dotfiles/bash/profile

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