@@ -15,10 +15,18 @@ Sorts objects by property values.
1515
1616## SYNTAX
1717
18+ ### Default
1819```
19- Sort-Object [-Descending] [-Unique] [-InputObject <PSObject>] [[-Property] <Object[]>] [-Culture <String>]
20- [-CaseSensitive] [-InformationAction <ActionPreference>] [-InformationVariable <String>] [<CommonParameters>]
21- [-Top <Int32>] [-Bottom <Int32>]
20+ Sort-Object [[-Property] <Object[]>] [-Descending] [-Unique] [-Top <Int32>]
21+ [-InputObject <PSObject>] [-Culture <String>] [-CaseSensitive]
22+ [<CommonParameters>]
23+ ```
24+
25+ ### Bottom
26+ ```
27+ Sort-Object [[-Property] <Object[]>] -Bottom <Int32> [-Descending] [-Unique]
28+ [-InputObject <PSObject>] [-Culture <String>] [-CaseSensitive]
29+ [<CommonParameters>]
2230```
2331
2432## DESCRIPTION
@@ -182,7 +190,7 @@ Specifies the number of objects to get from the end of the sorted object array.
182190
183191``` yaml
184192Type : Int32
185- Parameter Sets : (All)
193+ Parameter Sets : Bottom
186194Aliases :
187195
188196Required : False
@@ -242,33 +250,6 @@ Accept pipeline input: False
242250Accept wildcard characters : False
243251` ` `
244252
245- ### -InformationAction
246- ` ` ` yaml
247- Type : ActionPreference
248- Parameter Sets : (All)
249- Aliases : infa
250- Accepted values : SilentlyContinue, Stop, Continue, Inquire, Ignore, Suspend
251-
252- Required : False
253- Position : Named
254- Default value : None
255- Accept pipeline input : False
256- Accept wildcard characters : False
257- ` ` `
258-
259- ### -InformationVariable
260- ` ` ` yaml
261- Type : String
262- Parameter Sets : (All)
263- Aliases : iv
264-
265- Required : False
266- Position : Named
267- Default value : None
268- Accept pipeline input : False
269- Accept wildcard characters : False
270- ` ` `
271-
272253### -InputObject
273254Specifies the objects to sort.
274255
@@ -315,7 +296,7 @@ Parameter Sets: (All)
315296Aliases :
316297
317298Required : False
318- Position : 1
299+ Position : 0
319300Default value : None
320301Accept pipeline input : False
321302Accept wildcard characters : False
@@ -326,7 +307,7 @@ Specifies the number of objects to get from the start of the sorted object array
326307
327308` ` ` yaml
328309Type : Int32
329- Parameter Sets : (All)
310+ Parameter Sets : Default
330311Aliases :
331312
332313Required : False
0 commit comments