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.
我是圣人数学软件的新手。我一直在查看 sage 文档以查找 sage cli 是否支持以任何方式依次运行多个命令,即在使用 && 运算符时表现得像 bash。例如,在 Linux 上:
$ cp file1 file2 && rm file1
在命令行将 file1 复制到 file2 并在该操作完成后删除 file1。例如,我希望能够做类似的事情
sage: g = e^-x && g && x = g
从圣人提示。
圣人支持这个吗?如果没有,有解决方法吗?
谢谢。
所以 ”;” 使用 bash 代替我习惯使用 && 的符号(分号)似乎可以解决问题。如果有任何我不知道的差异,我会很感激这些信息。