在 csh 中设置特定可执行文件的路径

set the path of a particular executable in csh

目前,我已经在 UNIX 工作站的用户主目录上进行了 autoconf 更新版本的非根安装。工作站有一个旧版本的 autoconf,它是默认执行的。

我如何更改 .cshrc 中的路径,以便我执行的 autoconf 指向我安装的更新版本而不是旧版本?

假设您的 non-root 安装是 $HOME/my/autoconf/bin 那么这样的事情就可以了:

set path = ( $HOME/my/autoconf/bin $PATH )