我只想将文件夹树复制到另一个地方,如下所示:
cp -avr /blah/blah/htdocs ./
但我得到了错误:
cp: the -R and -r options may not be specified together.
我遵循了本教程:http : //www.cyberciti.biz/faq/copy-folder-linux-command-line/ 这是关于Linux,而我使用的是Mac。我发现我可以改用-avR解决。但是,我想知道-avr为什么会在Mac上导致奇怪的错误。