Code:
ps -ef -o pid,ppid,user,pcpu,stime,s,args | tail +2 |sort -nr +3
should do you (note, I rearranged your order slightly to put the command at the end to avoid any issues with spaces/column counting for the sort)..and the "tail +2" is just to get rid of the header line.
If you just want your processes try:
Code:
ps -fu $USER -o pid,ppid,user,pcpu,stime,s,args | tail +2 |sort -nr +3
HTH,