Reputation: 2945
There are no /proc
in macOS, however I want to get infomation about my system such as:
Is there any alternatives in macOS for that?
Upvotes: 6
Views: 12236
Reputation: 207
In MacOS, you can get all this informations in CLI with sysctl command.
sysctl -a //for all information
or
sysctl hw.memsize //for memory
sysctl hw.ncpu //cpu info
Upvotes: 14