4 lines
85 B
Bash
4 lines
85 B
Bash
# extend PATH variable
|
|
if [ -d "$HOME/bin" ]; then
|
|
export PATH="$HOME/bin:$PATH"
|
|
fi
|