man/home-config/.bash_profile
2022-01-23 20:16:23 +03:00

14 lines
293 B
Bash

# ~/.bash_profile: executed by bash(1) for login shells.
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
#echo 'bashprofile handeld'