Hacker News new | ask | show | jobs
by bloopernova 2433 days ago
Yeah, I like this in zsh:

    # Only allow unique entries in the PATH variable
    typeset -U path

    # Easier to read PATH variable modification:
    path+=(
      "${JAVA_HOME}/bin"
      "${GOPATH}/bin"
    )