11 lines
261 B
Text
11 lines
261 B
Text
|
#!/bin/bash
|
||
|
# set PATH so it includes user's private bin if it exists
|
||
|
if [ -d "$HOME/bin" ] ; then
|
||
|
PATH="$HOME/bin:$PATH"
|
||
|
fi
|
||
|
|
||
|
# set PATH so it includes user's private bin if it exists
|
||
|
if [ -d "$HOME/.local/bin" ] ; then
|
||
|
PATH="$HOME/.local/bin:$PATH"
|
||
|
fi
|