Getting memory usage from 'ps aux' output with awk
- by JustB
Hello everybody,
I have to solve an exercise using awk. Basically I need to retrieve from 'ps aux' command the total of memory usage for each user and format like this:
User Total%Mem
user1 3.4%
user2 1.5%
and so on.
The problem I can't seem to solve is: how do I know how many users are logged in? And how can I make a different sum for each one of them?
Thank you :)