从文本文件动态生成目录结构

时间:2017-10-09 22:59:37

标签: bash

鉴于以下文本文件包含目录列表,如果文件路径不存在,您将如何自动生成文件路径。

apache/bin/
apache/build/
apache/error/include
apache/htdocs/images/
apache/icon/small
python/bin
python/include/python2.7
lib/pkconfig
lib/python2.7/bsddb/test
lib/python2.7/compiler
lib/python2.7/ctypes/macholib
lib/python2.7/ctypes/test

例如,从root / start目录开始,如果该行显示apache/bin/,我想检查文件夹apache是否存在,如果它不存在,那么我创建它。

之后我想要进入它,检查文件bin是否存在,如果它没有,那么我创建它。然后在进入新行之前,我想回到根目录(即向上移动两个级别)。

我如何在Bash中完成此任务?

0 个答案:

没有答案