This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 11 months ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我遇到了同样的问题。
正如我在另一篇文章中学到的那样,问题是MacOS中的ZSH。
“*”不选择ZSH中的隐藏文件。
在ZSH上递归复制的正确命令包括:
CP -R *(D)../ hotherfolder
I had the same problem.
The problem is the zsh in MacOS, as I learned in another post.
"*" does not select hidden files in zsh.
The correct command to recursively copy on zsh including hidden files is:
cp -r *(D) ../otherfolder