1
0
Fork 0
mirror of https://github.com/zdharma-continuum/zinit-configs.git synced 2025-01-31 04:08:16 +01:00
zinit-configs/psprint/functions/optlbin_off
2019-06-27 12:47:09 +02:00

6 lines
144 B
Bash

# DESC: Removes /opt/local/{bin,sbin} from $PATH
path=( "${path[@]:#/opt/local/bin}" )
path=( "${path[@]:#/opt/local/sbin}" )
# vim:ft=zsh:et