如何将 bash 别名移植到 ipython > 0.10?

发布于 2024-12-07 10:18:21 字数 207 浏览 0 评论 0原文

如何将 bash 别名移植到 IPython 版本 >= 0.11?

这个问题已经为 IPython << 提供了答案。 0.11,其链接是 这里:

http://ipython.scipy.org/Wiki/tips

How do you port your bash aliases to IPython version >= 0.11?

This question has already been answered for IPython < 0.11, and link for that is
here:

http://ipython.scipy.org/Wiki/tips

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

酒中人 2024-12-14 10:18:21

这是我的解决方案。欢迎改进!

在你的 ipython 配置中,添加以下行:(我的位于:~/.config/ipython/profile_default/ipython_config.py)

c = get_config()

## Port bash aliases to ipython
import os, string
a = os.popen("bash -l -c 'alias'").read()
a = a.translate(string.maketrans("=", ' '), '\'"').split('alias ')
a = [tuple(x.strip().split(' ', 1)) for x in a]
c.AliasManager.user_aliases = [x for x in a if len(x) == 2]

Here is my solution. Improvements welcome!

In your ipython config, add the following lines: (mine is here: ~/.config/ipython/profile_default/ipython_config.py)

c = get_config()

## Port bash aliases to ipython
import os, string
a = os.popen("bash -l -c 'alias'").read()
a = a.translate(string.maketrans("=", ' '), '\'"').split('alias ')
a = [tuple(x.strip().split(' ', 1)) for x in a]
c.AliasManager.user_aliases = [x for x in a if len(x) == 2]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文