目录结构生成
小于 1 分钟约 98 字
目录结构生成
现在想要把开源在GitHub上面的项目生成一份目录结构,如下 :
安装
使用tree工具,Mac安装:
brew install tree
使用
tree -L 深度 目录
例如
tree -L 1
忽略某些文件:
tree -I node_modules -I .vuepress -L 4
现在想要把开源在GitHub上面的项目生成一份目录结构,如下 :
使用tree工具,Mac安装:
brew install tree
tree -L 深度 目录
例如
tree -L 1
忽略某些文件:
tree -I node_modules -I .vuepress -L 4