如何在 Octave 中运行初始化命令?
如何设置 Octave 软件在启动时运行初始化命令?例如设置提示符(PS1)并cd到项目目录?
谢谢。
How do you set up Octave software to run initialization commands when it starts? For example, set the prompt (PS1) and cd to the project directory?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我已将 Octave 安装在
C:\Octave
中,因此我按照您在位置C:\Octave\3.2.4_gcc-4.4.0\share\octave\site\m 的文件中的要求进行操作\启动
。文件名为Octave 的系统范围启动文件,我放入其中的代码是:但我想任何代码都可以。
I have Octave installed in
C:\Octave
, so I did what you ask in file at locationC:\Octave\3.2.4_gcc-4.4.0\share\octave\site\m\startup
. File is called System-wide startup file for Octave and code I put in there is:But any code is OK, I guess.
您可以
use
或
设置执行路径
个人而言,我不希望将 Octave cd 到项目目录,因为项目目录可能会更改。此外,如果您总是事先运行一些默认代码,那么其他功能(例如 --eval 命令)就不再那么容易使用了。
You could
use
or
set the exec path with
Personally, I wouldn't want octave to cd to the project directory, since projects directories can change. Furthermore, other features like the --eval command are not that easy to use anymore if you always have some default code running beforehand.