.octaverc file on Windows XP
I place this code in octaverc in home directory which is setup previously. I am confused, in the book it talks about .oct开发者_开发问答averc 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";
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.
精彩评论