gpt4 book ai didi

Powershell 彩色目录列表在格式范围内不正确

转载 作者:行者123 更新时间:2023-12-01 11:58:58 24 4
gpt4 key购买 nike

我从 http://tasteofpowershell.blogspot.com/2009/02/get-childitem-dir-results-color-coded.html 得到了这个彩色的 dir 脚本:

function ls {
$regex_opts = ([System.Text.RegularExpressions.RegexOptions]::IgnoreCase -bor [System.Text.RegularExpressions.RegexOptions]::Compiled)

$fore = $Host.UI.RawUI.ForegroundColor
$compressed = New-Object System.Text.RegularExpressions.Regex('\.(zip|tar|gz|rar)$', $regex_opts)
$executable = New-Object System.Text.RegularExpressions.Regex('\.(exe|bat|cmd|ps1|psm1|vbs|rb|reg|dll|o|lib)$', $regex_opts)
$executable = New-Object System.Text.RegularExpressions.Regex('\.(exe|bat|cmd|ps1|psm1|vbs|rb|reg|dll|o|lib)$', $regex_opts)
$source = New-Object System.Text.RegularExpressions.Regex('\.(py|pl|cs|rb|h|cpp)$', $regex_opts)
$text = New-Object System.Text.RegularExpressions.Regex('\.(txt|cfg|conf|ini|csv|log|xml)$', $regex_opts)

Invoke-Expression ("Get-ChildItem $args") |
%{
if ($_.GetType().Name -eq 'DirectoryInfo') {
$Host.UI.RawUI.ForegroundColor = 'DarkCyan'
$_
$Host.UI.RawUI.ForegroundColor = $fore
} elseif ($compressed.IsMatch($_.Name)) {
$Host.UI.RawUI.ForegroundColor = 'Yellow'
$_
$Host.UI.RawUI.ForegroundColor = $fore
} elseif ($executable.IsMatch($_.Name)) {
$Host.UI.RawUI.ForegroundColor = 'Red'
$_
$Host.UI.RawUI.ForegroundColor = $fore
} elseif ($text.IsMatch($_.Name)) {
$Host.UI.RawUI.ForegroundColor = 'Green'
$_
$Host.UI.RawUI.ForegroundColor = $fore
} elseif ($source.IsMatch($_.Name)) {
$Host.UI.RawUI.ForegroundColor = 'Cyan'
$_
$Host.UI.RawUI.ForegroundColor = $fore
} else {
$_
}
}
}

它工作得很好,但我大多数时候只想要宽格式的文件名。所以在调用表达式调用之后,我添加了
  Invoke-Expression ("Get-ChildItem $args") |
%{
if ($_.GetType().Name -eq 'DirectoryInfo') {
:
:
:
$_
}
} | format-wide -property Name
}

现在我有一个错误。只有第二列的颜色是正确的;每列中的第一项采用第二列中项的颜色。例如,如果我有
> ls

Directory Program.exe

然后 Directory 和 Program.exe 都将是红色的,即使 Directory 应该是 DarkCyan。我该如何纠正?

最佳答案

与其在向屏幕显示文本之间调整主机的前景色/背景色,不如使用 Write-Host,它可以让您更好地控制显示的文本(您可以控制何时输出换行符),例如:

$_ | Out-String -stream | Write-Host -Fore Red

对于广泛的列表用途,您需要自己处理列格式设置,除非您想更新 DirectoryInfo/FileInfo 类型的格式数据 XML。如果您不想这样做,那么您可以用所需的颜色写出每个名称(适当填充)。在最后一列,将 -NoNewLine 参数设置为 $false:
$width =  $host.UI.RawUI.WindowSize.Width
$cols = 3
ls | % {$i=0; $pad = [int]($width/$cols) - 1} `
{$nnl = ++$i % $cols -ne 0; `
Write-Host ("{0,-$pad}" -f $_) -Fore Green -NoNewLine:$nnl}

关于Powershell 彩色目录列表在格式范围内不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3420731/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com