Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从别名(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)。使用相对路径将使该命令在某些目录中起作用,但在其他目录中不起作用。
/tmp