Octaveでスタートアップスクリプトを設定する

以下のbig.mスクリプトを常に参照できるようにする。
big.m

set(findall(gcf,'-property','FontSize'),'FontSize',20);
set(findall(gcf,'-property','MarkerSize'),'MarkerSize',14);
set(findall(gcf,'Type','Line'),'LineWidth',2);
grid;

1. big.mを任意のフォルダに配置(例:~/my_octave_scripts)

$ mkdir ~/my_octave_scripts
$ mv big.m ~/my_octave_scripts

2. ~/.octaverc(スタートアップスクリプト)に以下を追記し、my_octave_scriptsを読み込む

~/.octaverc

setenv GNUTERM x11
addpath('~/my_octave_scripts') #←これを追記