python .bash_profile别名

时间:2013-03-07 09:51:06

标签: python macos alias .bash-profile

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

有可能吗?。

alias execute ='python path/file.py'

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

由于

1 个答案:

答案 0 :(得分:3)

删除=之前的空格,它应该有效:

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

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

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