1

例如(<magic>作为删除键所在的位置):

$ alias test="testrunner test/test_<magic>"
$ test module.py
.....
----------------------------------------------------------------------
Ran 5 tests in 0.001s

OK

这些年来,我遇到过一些这样的情况会很方便。

4

1 回答 1

3

不是我的头顶 - 但如果我正确理解你的意图,bash函数可能比别名更好:

  $ mytest(){ testrunner test/test_${1} ; }
  $ mytest module.py
于 2013-04-04T18:41:50.193 回答