"ps aux" outputs the following as the first line:
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
how can I preserve this line if I do a "ps aux | grep <someuser>" so that I can still see the header for each column?
In essence, I want to grep all but the first line of the initial "ps aux" output.