conf-99-basic_config_debian/root/.profile
Alban VIDAL cd2a8d7ed8 Add some aliases and functions
Signed-off-by: Alban VIDAL <alban.vidal@zordhak.fr>
2018-05-30 01:03:27 +02:00

22 lines
449 B
Bash

# ~/.profile: executed by Bourne-compatible login shells.
if [ "$BASH" ]; then
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
fi
mesg n
################################################################################
# My conf
# if .profile.d directory exist, load .conf files
#if [ -f ~/.profile.d/*.conf ] ;then
if [ -d ~/.profile.d/ ] ;then
for profile_d_file in ~/.profile.d/*.conf
do
. $profile_d_file
done
fi