10 lines
141 B
Bash
10 lines
141 B
Bash
#!/bin/sh
|
|
|
|
###
|
|
# set PATH so it includes user's private bin if it exists
|
|
#
|
|
|
|
if [ -d "$HOME/bin" ] ; then
|
|
export PATH="$HOME/bin:$PATH"
|
|
fi
|
|
|