0

使用 Emacs 24.3.1,我在 eshell 中通过 Tramp/ssh 进行编辑时得到了这个:

/<remotepath> $ bash
/<remotepath> $ python test.py
hello world!
/<remotepath> $ exit
exit
/<remotepath> $ python test.py
Python 2.6.6 (r266:84292, Oct 12 2012, 14:23:48) 
[GCC 4.4.6 20120305 (Red Hat 4.4.6-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 

该文件test.py是:

 print "hello world!"

Bash 是 4.1.2 版。有人对这种行为有任何解释吗?

4

1 回答 1

0

我不知道eshell,但我你在创建别名时忘记传递位置参数:

#                   don't forget the quotes  
#                ▼                            ▼
~ $ alias python '/path/to/alternate/python $*'
#                                           ▲▲
#                don't forget positional parameters

请参阅http://www.emacswiki.org/emacs/EshellAlias

于 2014-08-25T16:29:44.490 回答