Is there any way to stop "ps v" wrapping its output onto the next line. For one particular process I get:
PID TTY STAT TIME PGIN SIZE RSS LIM TSIZ TRS %CPU %MEM COMMAND
63708 - A 122:54 23739 20524 24784 32768 27161 9192 5.9 2.0 oraclePF
M
It seems to insert a carriage return at the 80th character. This messes up the awk script I was going to use to analyze the output.
I've tried stty columns and setting the COLUMNS environment variable.
PID TTY STAT TIME PGIN SIZE RSS LIM TSIZ TRS %CPU %MEM COMMAND
63708 - A 122:54 23739 20524 24784 32768 27161 9192 5.9 2.0 oraclePF
M
It seems to insert a carriage return at the 80th character. This messes up the awk script I was going to use to analyze the output.
I've tried stty columns and setting the COLUMNS environment variable.