"cd . && npm install"中的"cd ."有什么意义?

What is the point of "cd ." in "cd . && npm install"?

我正在使用 express generator。在 运行 生成器之后,它输出以下内容:

   install dependencies:
     $ cd . && npm install

cd .有什么意义?

这意味着你运行这个:

$ express

(或者可能 express .

换句话说,您告诉 express-generator 在当前工作目录中创建一个项目。或者,您可以提供一个子目录名称:

$ express foo

在那种情况下,它生成的命令行更有意义:

install dependencies:
  $ cd foo && npm install