同时复制并重命名

同时复制并重命名

我需要sample.txt从复制foo/bar/,粘贴时应bar/将其重命名为test.txt

为此我需要使用什么命令?

答案1

您可以用不同的名称粘贴它。

$ ls foo/
sample.txt
$ cp foo/sample.txt bar/test.txt
$ ls bar/
test.txt
$

相关内容