summaryrefslogtreecommitdiffstats
path: root/.bash_profile
blob: 82ea3c8de12893b8232b8e6fd1b18e3f14203b97 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/bash -l

for i in  ~/.profile ~/.bashrc
do
	if test -f "$i"
	then
		. "$i"
	fi
done