October 14th, 2015

PowerTip: Sort an Array of Numbers with PowerShell

Doctor Scripto
Scripter

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

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.