12 lines
148 B
Bash
12 lines
148 B
Bash
#!/bin/bash
|
|
if [ -r /etc/profile ]
|
|
then
|
|
. /etc/profile
|
|
fi
|
|
|
|
export BASH_ENV="$HOME/.bashrc"
|
|
|
|
if [ -r "$HOME/.profile" ]
|
|
then
|
|
. "$HOME/.profile"
|
|
fi
|