10 lines
203 B
Plaintext
10 lines
203 B
Plaintext
# Add user-installed commands to interactive non-login shells.
|
|
if [ -d "$HOME/bin" ]; then
|
|
case ":$PATH:" in
|
|
*":$HOME/bin:"*) ;;
|
|
*) PATH="$HOME/bin:$PATH" ;;
|
|
esac
|
|
fi
|
|
|
|
export PATH
|