gpt4 book ai didi

python .bash_profile 别名

转载 作者:行者123 更新时间:2023-11-28 16:44:27 27 4
gpt4 key购买 nike

我正在尝试从别名 (macosx) 执行 python 文件。

这可能吗?

alias execute ='python path/file.py'

我正在尝试这样,但不起作用,有什么建议吗?

谢谢

最佳答案

删除 = 之前的空格,它应该可以工作:

$ cat /tmp/x.py 
print 'hello, world!'

$ alias execute='python /tmp/x.py'
$ execute
hello, world!

另请注意,我使用的是绝对路径 (/tmp)。使用相对路径会使命令在某些目录中有效,但在其他目录中无效。

关于python .bash_profile 别名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15267940/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com