Use find instead du for more efficient execution. (#880)

Find is faster and it is only one command. The last `:` is removed by the parameter expansion (works in both Bash and Zsh).
This commit is contained in:
ZaxonXP 2021-01-13 23:51:40 +01:00 committed by GitHub
parent 9adf0e6bcd
commit 17f15d91ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,7 @@
# to clean up.
# Adds `~/.local/bin` to $PATH
export PATH="$PATH:$(du "$HOME/.local/bin" | cut -f2 | paste -sd ':' -)"
export PATH="$PATH:${$(find ~/.local/bin -type d -printf %p:)%%:}"
unsetopt PROMPT_SP