如何通过在 osx 中输入“gp”来运行 gnuplot?

如何通过在 osx 中输入“gp”来运行 gnuplot?

当我使用 cent os 或 ubuntu 时,我只需输入“gp”即可运行 gnuplot。

当然,输入“gnuplot”也可以。

但它在 osx 终端中不起作用。

如何使“gp”成为可能?

答案1

在终端中输入此行,您应该能够通过执行 gp 来调用 gnuplot

alias gp='gnuplot'

如果您想使其永久化,请将此行添加到 shell 的启动脚本中。~/.bashrc如果您使用 bash,或者~/.zshrc如果您使用 zsh,就会出现这种情况。

相关内容