The Hidden PS

2010-11-27 2 min read Bash Linux
  <td>
    <div class="text codecolorer">
      &nbsp;for p in `ps L|cut -d' ' -f1`;do echo -e "`tput clear;read -p$p -n1 p`";ps wwo pid:6,user:8,comm:10,$p kpid -A;done
    </div>
  </td>
</tr>
1

While going through the source code for the well known ps command, I read about some interesting things.. Namely, that there are a bunch of different fields that ps can try and enumerate for you. These are fields I was not able to find in the man pages, documentation, only in the source.

Continue reading