tree是一款開源工具,支持Linux、Windows等多種操做系統平臺,在Linux中能夠直接sudo apt install tree
安裝。在Windows平臺該命令發佈在Cygwin環境中,能夠經過Cygwin的安裝程序,在選擇Package時選中並安裝到Cygwin的bin路徑下。html
因爲在Windows平臺這個tree命令只能在Cygwin環境下運行,並且在GBK中文環境下顯示的效果較差。因此Fork了以後作了一些修改:git
可執行程序點擊連接下載: https://github.com/efreykongcn/tree/blob/master/tree.exe
GitHub源碼地址:https://github.com/efreykongcn/treegithub
下面分別展現在Windows平臺原生tree命令、Windows自帶的tree.com命令、修改後的命令執行後的效果。shell
在Cygwin的終端(Terminal)中運行tree命令,會以可視化的樹形結構展示指定文件夾下面的全部目錄和文件。在GBK字符集環境下(Windows 10中文默認的字符集),該程序只能以標準ASCII字符來顯示目錄文件的樹形結構。Cygwin終端運行tree
命令運行效果以下:json
$ tree . |-- CHANGES |-- color.c |-- doc | |-- tree.1 | |-- tree.1.fr | `-- xml.dtd |-- file.c |-- hash.c |-- html.c |-- INSTALL |-- json.c |-- LICENSE |-- Makefile |-- mingw-w64 | |-- include | | |-- grp.h | | |-- langinfo.h | | |-- pwd.h | | |-- stat.h | | |-- types.h | | `-- unistd.h | |-- mingw-w64-grp.c | |-- mingw-w64-langinfo.c | |-- mingw-w64-pwd.c | `-- mingw-w64-unistd.c |-- README |-- README.md |-- strverscmp.c |-- TODO |-- tree.c |-- tree.exe |-- tree.h |-- unix.c `-- xml.c 3 directories, 31 files
Windows自帶了tree.com命令,不過顯示的效果和功能都比較弱雞,在PowerShell中使用tree.com /f
(默認只顯示目錄,加/f
參數顯示文件)命令看下運行效果:windows
Folder PATH listing for volume Windows Volume serial number is 6AA8-4173 C:. │ CHANGES │ color.c │ file.c │ hash.c │ html.c │ INSTALL │ json.c │ LICENSE │ Makefile │ README │ README.md │ strverscmp.c │ TODO │ tree.c │ tree.exe │ tree.h │ unix.c │ xml.c │ ├─.vscode │ c_cpp_properties.json │ launch.json │ tasks.json │ ├─doc │ tree.1 │ tree.1.fr │ xml.dtd │ └─mingw-w64 │ mingw-w64-grp.c │ mingw-w64-langinfo.c │ mingw-w64-pwd.c │ mingw-w64-unistd.c │ └─include grp.h langinfo.h pwd.h stat.h types.h unistd.h
此次修改是源於在使用Git Bash時,發現Git bash中沒有在windows環境中實現tree命令。所以打算將這個開源的tree命令移植到Git bash環境中。
出於能夠在脫離Cygwin環境獨立使tree命令,以及在Windows中文環境增強顯示效果的目的,作了本次修改。修改後的tree,在PowerShell中運行tree.exe
命令後效果以下:bash
$ tree . ├── CHANGES ├── color.c ├── doc │ ├── tree.1 │ ├── tree.1.fr │ └── xml.dtd ├── file.c ├── hash.c ├── html.c ├── INSTALL ├── json.c ├── LICENSE ├── Makefile ├── mingw-w64 │ ├── include │ │ ├── grp.h │ │ ├── langinfo.h │ │ ├── pwd.h │ │ ├── stat.h │ │ ├── types.h │ │ └── unistd.h │ ├── mingw-w64-grp.c │ ├── mingw-w64-langinfo.c │ ├── mingw-w64-pwd.c │ └── mingw-w64-unistd.c ├── README ├── README.md ├── strverscmp.c ├── TODO ├── tree.c ├── tree.exe ├── tree.h ├── unix.c └── xml.c 3 directories, 31 files
查看修改後的版本信息:工具
$ tree --version tree v1.8.0 (c) 1996 - 2018 by Steve Baker, Thomas Moore, Francesc Rocher, Florian Sesser, Kyosuke Tokoro MINGW-W64 & GBK support added by Efrey Kong