This commit is contained in:
teldra 2021-04-18 14:46:33 +02:00
parent bd414642a4
commit 78937d9115
1 changed files with 10 additions and 1 deletions

View File

@ -1 +1,10 @@
appendpath '${HOME}/local/bin'
appendpath () {
case ":$PATH:" in
*:"$1":*)
;;
*)
PATH="${PATH:+$PATH:}$1"
esac
}
appendpath '${HOME}/local/bin'