以非交互模式运行 ipython

发布于 2024-10-20 20:06:18 字数 271 浏览 1 评论 0原文

我希望通过使用“!”可以很容易地使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浸婚纱 2024-10-27 20:06:18

Python 还具有模块,可以轻松地完全替换 bash 调用。这些更容易调试并提供更好的错误处理。

例如,您可以使用 glob 代替 ls,它支持相同的语法:

files=glob.glob('myfiles*.txt')

对于环境变量:

env = os.environ

对于与路径相关的函数:

os.path

对于常见操作,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 use glob, it supports the same syntax:

files=glob.glob('myfiles*.txt')

for environment variables:

env = os.environ

for path related functions:

os.path

for common operations, os.mkdir, os.chmod, os.getcwd [same as pwd]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文