Bash처럼 Fish에서 경로를 설정하시나요?

Bash처럼 Fish에서 경로를 설정하시나요?

내 bash_profile에 이 내용이 있는데 Fish에서 이에 상응하는 내용을 찾을 수 없습니다.

export PATH=$PATH:~/Dev/ark/bin
export PATH=$PATH:~/bin/
export PATH=$PATH:~/i386-elf/bin/
export GOPATH=~/Dev/gocode/
export PATH=$PATH:$GOPATH/bin

물고기 구성 파일에서 어떻게 이를 수행합니까? 난 노력 했어

set PATH $PATH:$GOPATH/bin

그러나 그것은 작동하지 않는 것 같습니다.

편집: 내 물고기 구성을 다음과 같이 수정했습니다.

set -x GOPATH ~/Dev/gocode
set -U fish_user_paths $fish_user_paths ~/Dev/ark/bin ~/bin/ ~/i386-elf/bin $GOPATH/bin

하지만 질문을 닫고 싶은지, 아니면 답변을 제출하려는 사람이 있는지, 아니면...?

답변1

사용자 정의 환경 변수를 설정하려면 -x경로를 사용하는 것으로 나타납니다. 지속적인 환경 변수의 경우 fish_user_paths$PATH에 지정된 경로를 추가하는 를 설정해야 합니다 .

경로 경로 경로 경로

set -x GOPATH ~/Dev/gocode
set -U fish_user_paths $fish_user_paths ~/Dev/ark/bin ~/bin/ ~/i386-elf/bin $GOPATH/bin

관련 정보