dotfiles/a/bin/consolidate-path

13 lines
151 B
Plaintext
Raw Normal View History

2022-08-24 08:07:33 +00:00
#!/bin/bash
result=":"
IFS=:
for p in $1; do
[[ "$result" == *:"$p":* ]] || result="${result}${p}:"
done
result="${result#:}"
echo "${result%:}"