沃梦达 / 编程问答 / php问题 / 正文

用于创建“漂亮"的 ASCII 库目录树?

ASCII Library for Creating quot;Prettyquot; Directory Trees?(用于创建“漂亮的 ASCII 库目录树?)

本文介绍了用于创建“漂亮"的 ASCII 库目录树?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有一些 *nix 工具或 perl/php 库可以让您轻松创建如下所示的目录树可视化?

Is there some *nix tool or perl/php library that will let you easily create directory tree visualizations that look like the following?

www
|-- private
|    |-- app 
|    |    |-- php
|    |    |    |-- classes
|    |    |    +-- scripts
|    |    |-- settings
|    |    +-- sql
|    +-- lib
|         +-- ZendFramework-HEAD
+-- public
    |-- css
    |-- images
    +-- scripts

推荐答案

这个例子来自 Unix Tree/Linux树:

ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^/]*//--/g' -e 's/^/   /' -e 's/-/|/'  

这篇关于用于创建“漂亮"的 ASCII 库目录树?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:用于创建“漂亮"的 ASCII 库目录树?

基础教程推荐