python .bash_profile 别名

问题描述 投票:0回答:1

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

有可能吗?

alias execute ='python path/file.py'

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

谢谢

python macos alias bash
1个回答
3
投票

删除

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

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

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

另请注意,我使用的是绝对路径(

/tmp
)。使用相对路径将使命令在某些目录中起作用,但在其他目录中不起作用。

© www.soinside.com 2019 - 2024. All rights reserved.