1

我想定义一些命令行便利函数,每次启动 Torch REPL 时都要运行。例如,

function cl() os.execute('clear') end

和那种性质的东西。每次启动 REPL 时,如何将这样的功能添加到命名空间?

我在网上搜索了“luajit|torch|trepl startup|rc 文件”,但找不到任何线索。

4

1 回答 1

1

您可以为您的 th repl 起别名以采用默认的 -l 参数:

alias thnew='th -lmyadditions '

其中 myadditions.lua 是放置在 lua 路径中的要执行的文件。

于 2015-04-29T16:15:27.313 回答