X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=path_add-function;h=0edf2bb62cd76cec2d7dc99addda53013902217b;hb=253fa549f1108bb732674fad5b4bec29c23ffd98;hp=428e2ecabc2faef3359efcb6cd61783ae32ae50b;hpb=bb96da25e745fc77a9cd6c22559ac076aa1df94b;p=distro-setup diff --git a/path_add-function b/path_add-function index 428e2ec..0edf2bb 100644 --- a/path_add-function +++ b/path_add-function @@ -1,20 +1,28 @@ #!/bin/bash -# no bashisms so it can be used in debian profile run by dash -# --start adds to start of path, which will give it highest priority -# --ifexists will add to path only if the directory exists +# avoiding bashisms so it can be used in edge cases where I don't have bash, +# however, I'm not super confident that I've avoided them all +# +# path_add() { - local found x y z ifexists start loop + local help="usage: path_add [options] PATH +--help: print this +--end: adds to end of path, which will give it lowest priority +--ifexists: add to path only if the directory exists" + local found x y z ifexists end loop newpath ifexists=false - start=false + end=false loop=true # portable substring matching is ugly http://mywiki.wooledge.org/BashFAQ/041 while $loop; do case $1 in --*) - if [ "$1" = --start ]; then - start=true + if [ "$1" = --end ]; then + end=true elif [ "$1" = --ifexists ]; then ifexists=true + elif [ "$1" = --help ]; then + echo "$help" + return fi shift ;; @@ -23,22 +31,35 @@ path_add() { ;; esac done - for x in "$@"; do - found=false - IFS=: - for y in $PATH; do - [ "$x" = "$y" ] && found=true + IFS=: + # build up the path without the components we want to add + for y in $PATH; do + for x in "$@"; do + if [ "$x" = "$y" ]; then + found=true + else + found=false + fi done - unset IFS if ! $found; then - if ! $ifexists || [ -d "$x" ]; then - if [ ! "$PATH" ]; then - PATH="$x" - elif $start; then - PATH="$x:$PATH" - else - PATH="$PATH:$x" - fi + if [ ! "$newpath" ]; then + newpath="$y" + else + newpath="$newpath:$y" + fi + fi + done + + unset IFS + PATH="$newpath" + for x in "$@"; do + if ! $ifexists || [ -d "$x" ]; then + if [ ! "$PATH" ]; then + PATH="$x" + elif $end; then + PATH="$PATH:$x" + else + PATH="$x:$PATH" fi fi done