SyntaxFix
Write A Post
Hire A Developer
Questions
As an alternative, there is always perl:
ps aux | perl -lane 'print $F[3]'
Or, if you want to get all fields starting at field #3 (as stated in one of the answers above):
ps aux | perl -lane 'print @F[3 .. scalar @F]'