Quantcast
Viewing all articles
Browse latest Browse all 1703

Sorted list of all msedge.exe processes by PID

I wanted a sorted list of all msedge.exe processes by PID.

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

Viewing all articles
Browse latest Browse all 1703

Trending Articles