回答:
この問題にはさまざまな解決策があります(このWebページから引用)。
このオプションは、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