Powershell - 格式宽的 Cmdlet
Cmdlet
Format-Wide cmdlet 可用于将输出格式化为一个表,每个对象具有一个属性。
在这些示例中,我们看到了 Format-Wide cmdlet 的运行情况。
例 1
在这个例子中,首先我们在 D:\temp\test
中有一个文件 test.txt
,内容为 Welcome to Tastones.Com
,test1.txt 的内容为“Hello World!”。和 Welcome to Tastones.Com
分为两行。
获取变量中的文件详细信息。
$A = Get-ChildItem D:\temp\test\*.txt
使用 Format-Wide cmdlet 获取文件详细信息。
Format-Wide -InputObject $A
输出
你可以在 PowerShell 控制台中看到以下输出。
Directory: D:\temp\test
test.txt test1.txt
例 2
获得所需的财产。
在 PowerShell ISE 控制台中键入以下命令
Format-Wide -InputObject $A -Property -Property Length
输出
你可以在 PowerShell 控制台中看到以下输出。
Directory: D:\temp\test
31 44