复制新文件,同时保留原始文件

复制新文件,同时保留原始文件

如何从同一目录中的现有文件创建具有新名称的新文件?以下命令不起作用,因为它会删除原始文件server.properties

$ mv server.properties server-0.properties

答案1

要复制文件,可以使用cp(“复制”)命令

cp /path/to/sourceFile path/to/newFile

在你的情况下

cp server.properties server-0.properties

答案2

您需要使用复制 (cp) 而不是移动 (mv)。

cp server.properties server-0.properties

更多内容请见:http://manpages.ubuntu.com/manpages/artful/man1/cp.1.html

相关内容