My archinfo utility is a small macOS command line application that displays process id, name, and architecture (arm64 or x86_64).
Version 0.4.0 adds the following capabilities:
- Added
--x86
(-x
short option) to havearchinfo
only show x86_64 processes - Added
--arm
(-a
short option) to havearchinfo
only show arm64 processes - Added
--basename
(-b short option) to have
archinfo` only show basenames of running processes vs the full path
The key driver for this update was to make it easier to only see the remaining, non-universal binary or ARM-only laggards.
Example runs with the new options:
$ archinfo --x86 --basename
42801 x86_64 QtWebEngineProcess
40408 x86_64 QtWebEngineProcess
40378 x86_64 RStudio
56426 x86_64 gpg-agent
4244 x86_64 TwitchStudioStreamDeck
4243 x86_64 QtWebEngineProcess
4213 x86_64 QtWebEngineProcess
4173 x86_64 kbfs
4155 x86_64 keybase
4140 x86_64 updater
4065 x86_64 Keybase Helper (Renderer)
4057 x86_64 Keybase Helper (Renderer)
4056 x86_64 Keybase Helper
4053 x86_64 Keybase Helper (GPU)
4045 x86_64 krisp
4043 x86_64 Keybase
4035 x86_64 AdobeCRDaemon
4033 x86_64 AdobeIPCBroker
3993 x86_64 Elgato Control Center
3971 x86_64 Stream Deck
3959 x86_64 LogiVCCoreService
$ archinfo --x86 --basename --json
{"pid":42801,"arch":"x86_64","name":"QtWebEngineProcess"}
{"pid":40408,"arch":"x86_64","name":"QtWebEngineProcess"}
{"pid":40378,"arch":"x86_64","name":"RStudio"}
{"pid":56426,"arch":"x86_64","name":"gpg-agent"}
{"pid":4244,"arch":"x86_64","name":"TwitchStudioStreamDeck"}
{"pid":4243,"arch":"x86_64","name":"QtWebEngineProcess"}
{"pid":4213,"arch":"x86_64","name":"QtWebEngineProcess"}
{"pid":4173,"arch":"x86_64","name":"kbfs"}
{"pid":4155,"arch":"x86_64","name":"keybase"}
{"pid":4140,"arch":"x86_64","name":"updater"}
{"pid":4065,"arch":"x86_64","name":"Keybase Helper (Renderer)"}
{"pid":4057,"arch":"x86_64","name":"Keybase Helper (Renderer)"}
{"pid":4056,"arch":"x86_64","name":"Keybase Helper"}
{"pid":4053,"arch":"x86_64","name":"Keybase Helper (GPU)"}
{"pid":4045,"arch":"x86_64","name":"krisp"}
{"pid":4043,"arch":"x86_64","name":"Keybase"}
{"pid":4035,"arch":"x86_64","name":"AdobeCRDaemon"}
{"pid":4033,"arch":"x86_64","name":"AdobeIPCBroker"}
{"pid":3993,"arch":"x86_64","name":"Elgato Control Center"}
{"pid":3971,"arch":"x86_64","name":"Stream Deck"}
{"pid":3959,"arch":"x86_64","name":"LogiVCCoreService"}
You can find signed binaries and source code on the Releases page.
One Trackback/Pingback
[…] *** This is a Security Bloggers Network syndicated blog from rud.is authored by hrbrmstr. Read the original post at: https://rud.is/b/2021/05/26/archinfo-v0-4-0-released/ […]