2

请参考链接: https ://docs.xebialabs.com/xl-deploy/how-to/create-a-deployment-package-using-the-command-line.html

收集 EAR 文件和配置目录并将它们存储在目录中:

cp /some/path/petclinic-1.0.ear petclinic-package

cp -r /some/path/conf petclinic-package

现在什么是cp?Java命令?Maven命令?Windows 命令?

'cp' 不是内部或外部命令、可运行程序或批处理文件。

4

1 回答 1

2

cp is the Unix/Linux file copy command. The first line copies a single file. The second line with cp -r copies recursively: it copies the directory tree.

You can achieve the same with the windows "copy" command or by performing these steps manually in the windows explorer.

于 2018-10-04T22:25:04.947 回答