PowerShell - Get-Unique Cmdlet



Cmdlet

Get-Unique cmdlet 能够获取已排序对象列表中的唯一对象。

本例中,我们将了解 Get-Unique cmdlet 的实际使用。

步骤 1

本例中,我们在变量中设置了字符串列表。

在 PowerShell ISE 控制台中键入以下命令

$list = "one","two","two","three","four","five"

步骤 2

本例中,我们正在打印原始的字符串列表。

在 PowerShell ISE 控制台中键入以下命令

$list

输出

你能够在 PowerShell 控制台中看到以下输出内容。

one
two
two
three
four
five

步骤 3

本例中,我们先对列表进行排序,然后再获取唯一值。

在 PowerShell ISE 控制台中键入以下命令

$list | sort | get-unique

输出

你能够在 PowerShell 控制台中看到以下输出内容。

five
four
one
three
two
powershell_advanced_cmdlets.htm
广告