标题: [问题求助] powershell 怎么实现 gnu tree 的功能 [打印本页]
作者: newswan 时间: 2024-1-6 11:46 标题: powershell 怎么实现 gnu tree 的功能
用 gnu tree 输出下面的样式,有没有 powershell 实现的?- ( C:\msys64\usr\bin\tree.exe --dirsfirst --noreport -s $folder ) -replace "^(.+)(\[\s+\d+\])","`$2`$1"
复制代码
- [ 0] C:\msys64\etc\
- [ 0]├── fstab.d
- [ 0]├── pacman.d
- [ 0]│ ├── gnupg
- [ 0]│ │ ├── crls.d
- [ 5]│ │ │ └── DIR.txt
- [ 0]│ │ ├── openpgp-revocs.d
- [ 1797]│ │ │ └── FA1A00E82F386AF1452012FDA88556E56F1C0E36.rev
- [ 0]│ │ ├── private-keys-v1.d
- [ 3787]│ │ │ └── 7224FFDCCD4029DEC798EAF652475CBC724BF8DB.key
- [ 17]│ │ ├── gpg-agent.conf
- [ 141]│ │ ├── gpg.conf
- [ 44079]│ │ ├── pubring.gpg
- [ 44079]│ │ ├── pubring.gpg~
- [ 0]│ │ ├── secring.gpg
- [ 49152]│ │ ├── tofu.db
- [ 2240]│ │ └── trustdb.gpg
- [ 2051]│ ├── mirrorlist.clang32
- [ 2051]│ ├── mirrorlist.clang64
- [ 1985]│ ├── mirrorlist.mingw
- [ 1952]│ ├── mirrorlist.mingw32
- [ 2018]│ ├── mirrorlist.mingw64
- [ 1952]│ ├── mirrorlist.msys
- [ 2018]│ └── mirrorlist.ucrt64
复制代码
找到一个类似的 show-tree ,https://github.com/jdhitsolution ... r/docs/Show-Tree.md
作者: idwma 时间: 2024-1-6 22:04
- $c=@{1='│ ';2='├── ';3='└── '}
- function z($d,$e){
- $f=$c[2]
- $d=dir $d
- $d|%{
- if(++$i -eq $d.count){$f=$c[3]}
- if($_.PSIsContainer){
- '[{0,11}]{1}{2} {3}' -f 0, $e, $f, $_.name
- z -d $_.fullname -e ($c[1]+$e)
- }else{'[{0,11}]{1}{2} {3}' -f $_.length, $e, $f, $_.name}
- }
- }
- z
复制代码
作者: newswan 时间: 2024-1-6 23:48
回复 2# idwma
谢谢,比网上的简单多了。。。
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |