I have a piped command say
command1 | command2 | command3
or lets say something like
ps | grep "something"
Now to the output of the command I would like to add to each coloumn some label or data to the top using shell script.
EDIT
In short this is what i want
InsertedLabel1 Inslabel2 Inslabel3
Data1frompipe Data1frompipe Data1frompipe
Data2frompipe Data2frompipe Data2frompipe
What is an easy way to acheive this?