Answers:
有多种解决此问题的方法(来自此网页):
此选项将mkdir命令与find命令一起使用。此方法还要求您在执行命令时位于源文件夹中。
bash$ cd /path/to/source && find . -type d -exec mkdir -p /path/to/dest/{} ;
使用find和cpio
bash$ find /path/to/source -type d | cpio -pd /path/to/dest/
使用Rsync
bash$ rsync -a --include '*/' --exclude '*' /path/to/source /path/to/dest
要么
bash$ rysnc -a -f"+ */" -f"- *" /path/to/source /path/to/dest