使用tree命令输出在不同的地方创建相同的目录树结构

问题描述 投票:-1回答:1

是否有可以采用树输出的命令或UNIX实用程序:

.
`-- First
    |-- data1
    |   `-- some_file -> /tmp/some_file
    `-- data2

并在另一个地方创建相同的树结构?

bash unix tree tcsh
1个回答
1
投票

来自Tar only the Directory structure

find First -type d -print0 | xargs -0 tar cf dir_template.tar --no-recursion

其中First是您要保存结构的顶级目录。

dir_template.tar复制到您的目标目的地,然后:

tar xf dir_template.tar
© www.soinside.com 2019 - 2024. All rights reserved.