以非交互模式运行 ipython
我希望通过使用“!”可以很容易地使用 ipython 重写一些 bash 脚本。命令。不幸的是,如果我尝试以非交互模式运行 ipython,如下所示:
ipython -p sh myipythonscript.py
其中 myipythonscript.py 包含如下命令:
env=%env
d=!ls
这不起作用。我收到语法错误。 是否有一个选项允许 ipython 以非交互模式运行?
I was hoping it would be easy to rewrite a few bash scripts using ipython by using the "!" command. Unfortunately if I try to run ipython in non-interactive mode like so:
ipython -p sh myipythonscript.py
where myipythonscript.py contains commands like:
env=%env
d=!ls
This doesn't work. I get SyntaxError.
Is there an option which allows ipython to be run in non-interactive mode?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Python 还具有模块,可以轻松地完全替换 bash 调用。这些更容易调试并提供更好的错误处理。
例如,您可以使用
glob
代替ls
,它支持相同的语法:对于环境变量:
对于与路径相关的函数:
对于常见操作,
os.mkdir< /code>,
os.chmod
,os.getcwd
[与 pwd 相同]Python also has modules which makes it easy to completely replace bash calls. these are easier to debug and give better error handling.
for example instead of
ls
you can useglob
, it supports the same syntax:for environment variables:
for path related functions:
for common operations,
os.mkdir
,os.chmod
,os.getcwd
[same as pwd]