點燈坊

失くすものさえない今が強くなるチャンスよ

如何新增路徑到 $PATH ?

Sam Xiao's Avatar 2020-06-30

由於 Linux 以 CLI 為主,因此實務上常須自行增加路徑執行以 CLI 為主的 App。

Version

Ubuntu 20.04

Ubuntu

$ echo $PATH

顯示目前 $PATH

$ vim ~/.profile

修改 home directory 的 .profile

.profile

export PATH=$PATH:/usr/local/nginx/sbin

$PATH 取得原路徑,並在 : 之後加上新路徑,最後以 = 指定到 PATH export 到 shell。

$ source ~/.profile

source 重新執行 .profile 讓新路徑生效。

Conclusion

  • 只要修改 home directory 的 .profile,就可自行新增路徑到 $PATH