如何使用UNIX将特定文件夹复制到根文件夹?

时间:2017-08-24 04:52:59

标签: macos unix web hugo

我正在尝试将名为exampleSite的文件夹的内容复制到我当前的文件夹中。

我的命令是这样的:

cp themes/goa/exampleSite/* . -r

然而我收到以下错误

cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file       cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

在unix中使用copy命令的正确方法是 -

cp -r themes/goa/exampleSite/* .

其中,cp是<command>

themes/goa/exampleSite/*是&lt; 1st arugment&gt;即SOURCE

.是&lt;第二个参数&gt;即目的地

每当您运行的命令由于某些语法错误而立即意外失败时。请运行

man <command>

这将显示正确的语法!

希望有所帮助......