Windows XP 上的 .octaverc 文件
我将此代码放置在之前设置的主目录中的 Octaverc 中。我很困惑,在书中它谈到了.octaverc,前面有一个点,我只是将我的文件命名为octaverc。此代码不会在启动时加载,但它应该加载。如果我在命令行中执行此操作,那很好,但我希望它每次都能自动加载,但事实并非如此。所以我的主目录很好,并且我在其中有包含此代码的 Octaverc 文件。怎么了?我使用的是 Windows XP。
PS1 (">> ");
edit mode "async";
I place this code in octaverc in home directory which is setup previously. I am confused, in the book it talks about .octaverc with a dot in front and I just name my file octaverc. This code does not load on start and it should. If i execute this in command line it is fine but I want it to load automatically each time, and it does not. So my home directory is fine, and I have octaverc file in there with this code. What is wrong? I am on Windows XP.
PS1 (">> ");
edit mode "async";
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以点开头的文件名是 Unix/Linux 上的隐藏文件。它经常用于配置文件。显然,Windows 保留了相同的名称(我只在 Linux 上使用过它)。你应该尝试用点。
Filenames beginning with a dot are hidden files on Unix/Linux. It's often used for configuration files. Apparently, the same name was kept for Windows (I only used it on Linux). You should try with a dot.