博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Copy entire folder in Linux
阅读量:7011 次
发布时间:2019-06-28

本文共 298 字,大约阅读时间需要 1 分钟。

 

|   |   | 

To copy an entire folder (directory tree) in Linux, use the following method:

mkdir target_directory

cd source_directory
cp -ap . target_directory

Other options:

cp -apv . target_directory (for verbose results)
\cp -ap . target_directory (for unix)

More info:

转载地址:http://xzjtl.baihongyu.com/

你可能感兴趣的文章