1

我想加载一个 sage 文件并从该文件运行一个函数,所有这些都来自 bash。

attach命令给我带来了麻烦...

这有效:

bash-prompt$ sage -c "print 2; print 3"
2
3
bash-prompt$

这也有效:

bash-prompt$ sage -c "attach somefile.sage"
some print just to confirm the file is loaded
bash-prompt$

但这不起作用:

bash-prompt$ sage -c "attach somefile.sage; print 3"
python: can't open file '/path/to/somefile.sage; print Integer(3)': [Errno 2] No such file or directory

我怎样才能让它工作,或者我能做些什么呢?

4

2 回答 2

1

如果对某人有帮助...

我最终使用了这个怪物:

sage somefile.sage && sage -python -c "execfile('somefile.py'); wrapper()" && rm somefile.py

好的,这rm部分并不是真正必要的:)

于 2013-10-14T17:44:31.137 回答
0

我认为最简单的做法是将函数作为实际 Sage 文件中的最后一行调用:例如,“somefile.sage”将作为其最后一行print 3

于 2013-10-13T15:32:51.947 回答