I don't think there's another way, cleanly at least, than adding it your ~/.zshrc
I don't know .zshrc syntax, but this works in bash:
if [ -d "$GOBIN" ]; then PATH="$PATH:$GOBIN"; fi
macOS 10.12.6
Hallo, ich habe eine Golang-Installation auf einem Apple Mac und möchte die Dateien in meinem $ GOBIN-Ordner (~ / code / go / bin) von überall abrufbar machen.
Ich bin mir bewusst, dass ich diesen Ordner einfach zu meinem $ PATH hinzufügen könnte, aber um meine .zshrc
schöne und saubere Sache zu erhalten, versuche ich, einen Weg zu finden, symbolische Links ( ln
) zu verwenden, um dies zu erreichen.
Kann jemand etwas Licht auf diese Frage werfen? Vielen Dank.
I don't think there's another way, cleanly at least, than adding it your ~/.zshrc
I don't know .zshrc syntax, but this works in bash:
if [ -d "$GOBIN" ]; then PATH="$PATH:$GOBIN"; fi