Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有该文件夹/var/test/abc/xyz/并想将其复制到/home/test/.
/var/test/abc/xyz/
/home/test/
通常我这样做cp -R /var/test/abc/xyz/ /home/test/的问题是xyz/直接复制到/home/test.
cp -R /var/test/abc/xyz/ /home/test/
xyz/
/home/test
是否有可能直接使用或其他复制命令abc/创建并xyz/复制到其中?cp如果可能的话,我想避免使用 mkdir。
abc/
cp
谢谢你的帮助,卢卡斯
怎么样cp -R /var/test/abc/ /home/test/?假设abc仅包含xyz. 如果不是这种情况,请先创建abc/,test/然后使用您的复制命令。
cp -R /var/test/abc/ /home/test/
abc
xyz
test/