blob: f483ba360a68e8b752cf62597fb9cc9c224fe9c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# ~/.profile: executed by bash(1) for login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples.
# I include this in all login environements, bash(1) or not
export PATH=$HOME/bin:$PATH
# The rest is for bash(1) logins only
if [ -n "$SHLVL" ]; then
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
|