env是什么选项?

从env的手册页:

The historic - option has been deprecated but is still supported in this implementation. 

什么是“历史性的select”呢?

特别是,为什么它会改变哪个版本的python运行?

 ~:$ env python Python 2.6.5 Stackless 3.1b3 060516 (release26-maint, Mar 24 2010, 09:47:07) 

但:

 ~:$ env - python Python 2.5.1 (r251:54863, Feb 6 2009, 19:02:12) 

“历史性”? 这是一个新的。 以下是GNU coreutils 7.6 env(1)手册页的摘录:

  -i, --ignore-environment start with an empty environment 

….

  A mere - implies -i. If no COMMAND, print the resulting environment. 

不传递任何命令,看看$PATH是否有变化。