Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Ubuntu 上,我首先使用安装了 Pandoc apt-get,然后使用了 haskell cabal 包管理器。如何使pandoc终端命令引用较新的 pandoc?我已将 cabal bin 路径添加到我的 ~/.bashrc 脚本中的系统路径,如下所示:
apt-get
pandoc
PATH=$PATH:~/.cabal/bin export PATH
啊,我明白了。要使终端命令优先于另一个,我只需要确保它首先出现在路径中,如下所示:
PATH=~/.cabal/bin:$PATH export PATH
您还可以在 /etc/profile(通用)或 ~/.profile 或 ~/.bashrc(只有一个用户)中创建新二进制文件的别名。
alias pandoc="/path/of/new/pandoc"