Displaying memory usage
Friday 27, January 2012
If you need to display how many memory are using your commands running on a machine, you can execute the following command:
$ ps -u arturo -o rss,comm
arturo should be replaced for your current user. RSS means Resident Set Size and it shows the physical memory used by the process in kilobytes (kB).




