I wanted a sorted list of all msedge.exe processes by PID.
To make it into a list...
To make it into a sorted list...
Read more
Code:
E:\Utils>echo %@pid[msedge.exe,+]
14936 15036 15276 15284 14664 15452 15476 15528 16128 18500 17272 12228 2484 17068 17328 7024 21308 22500
To make it into a list...
Code:
E:\Utils>echo %@replace[ ,^n,%@pid[msedge.exe,+]]
14936
15036
15276
15284
14664
15452
15476
15528
16128
18500
17272
12228
2484
17068
17328
7024
21308
22500
To make it into a sorted list...
Code:
E:\Utils>echo %@replace[ ,^n,%@pid[msedge.exe,+]] | xsort...
Read more