zshlibs/global/global_path_expand

9 lines
145 B
Plaintext
Raw Permalink Normal View History

2024-01-18 15:32:40 +00:00
function global_path_expand()
{
2024-04-25 17:31:30 +00:00
local bin_base=${1}/bin
shift
2024-01-18 15:32:40 +00:00
for pathnew in ${*}; do
zshlibs_path_add "${bin_base}/${pathnew}"
done;
}