mirror/debian/.bash_profile

12 lines
244 B
Bash
Raw Normal View History

2021-09-09 00:31:28 -04:00
# ~/.bash_profile: executed by bash(1) for login shells.
# include .bashrc if it exists
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# set PATH so it includes user's private bin if it exists
if [ -d ~/bin ] ; then
PATH=~/bin:"${PATH}"
fi