Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Torch REPL を起動するたびに実行されるコマンド ラインの便利な関数をいくつか定義したいと思います。例えば、
function cl() os.execute('clear') end
そしてその性質のもの。REPL を開始するたびに、このような関数を名前空間に追加するにはどうすればよいですか?
「luajit|torch|trepl startup|rc file」を Web 検索しましたが、これに関する手がかりが見つかりませんでした。
th repl をエイリアスして、デフォルトの -l パラメータを取得できます。
alias thnew='th -lmyadditions '
myadditions.lua は、lua パスに配置された実行ファイルです。