我想加载一个 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
我怎样才能让它工作,或者我能做些什么呢?