我有一个要在此目录中运行的文件:
C:\ruby\App\bin\cucumber
我有一个文件,我想在这个目录中传递它:
C:\ruby\App\features\creating_projects.feature
当我明确cd
地/bin
运行文件时,一切正常:
C:\ruby\App>cd bin
C:\ruby\App\bin>cucumber ..\features\creating_projects.feature
但我希望能够在我的应用程序的根目录中运行它。但这不起作用。它说,"bin\cucumber" is not a program, command of file
:
C:\ruby\App>bin\cucumber features\creating_projects.feature
# error
我怎样才能以这种方式运行文件?