我有 的结果Get-ChildItem
,我想遍历这些,并显示它们的名称。默认情况下,如果我简单地使用Write-Host
,那么我会像这样将它列在行中:
PerfLogs Program Files Program Files (x86) Python31 Temp Users Windows
但是,假设我知道我希望它分成 x 列,我想要这样的输出:
PerfLogs Python31 Windows
Program Files Temp
Program Files (x86) Users
如您所见,它首先将其列在列中,然后再跨列列出。
知道如何获得这样的输出吗?理想情况下,它将使用屏幕上可以容纳的最多列数,并且名称在每列的左侧对齐。
更新:多亏了 Roman,我现在可以使用带有目录颜色的 linux 风格的 'ls' 输出。以他更新的脚本为基础,我有:
function color-ls
{
dir $args | Format-High -Print {
$item = $args
$fore = $host.UI.RawUI.ForegroundColor
$host.UI.RawUI.ForegroundColor = .{
if ($item[1].psIsContainer) {'Blue'}
elseif ($item[1].Extension -match '\.(exe|bat|cmd|ps1|psm1|vbs|rb|reg|dll|o|lib)') {'Red'}
elseif ($item[1].Extension -match '\.(zip|tar|gz|rar)') {'Yellow'}
elseif ($item[1].Extension -match '\.(py|pl|cs|rb|h|cpp)') {'Cyan'}
elseif ($item[1].Extension -match '\.(txt|cfg|conf|ini|csv|log|xml)') {'Green'}
else {$fore}
}
write-host $args[0] -NoNewLine
$host.UI.RawUI.ForegroundColor = $fore
}
}
输出: