PowerTip: Sort an Array of Numbers with PowerShell

Doctor Scripto

Summary: Learn how to sort an array of numbers with Windows PowerShell.

Hey, Scripting Guy! Question How can I use Windows PowerShell to easily sort an array of numbers?

Hey, Scripting Guy! Answer Pipe the array to the Sort-Object (sort is an alias) cmdlet, for example:

$a = 1,2,7,6,4,3,3,2,9

$a | sort

0 comments

Discussion is closed.

Feedback usabilla icon