11 lines
141 B
Bash
11 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
|
||
|
|