blob: 2c51184f04f9ec0d640f155754a0af32155de8e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# ~/.bash_profile
#
## This only is read by bash when it is a login shell,
# not an interactive one (lightdm, for example). So
# .profile has to be sourced (as well as .bashrc). See:
# https://unix.stackexchange.com/questions/88106/why-doesnt-my-bash-profile-work.
[[ -f ~/.profile ]] && . ~/.profile
[[ -f ~/.bashrc ]] && . ~/.bashrc
|