echo

Dear,

How can i put an awk output in the same line after echo.

e.g.: echo TONTAL, awk '.......}' > toto

the echo value and the output of the awk i need them both on the same line.

Please any one can help me????
Thanks

\c - Print line without new-line. All characters following the \c in the
argument are ignored.

echo "TOTNAL \c"; awk...

echo "string " `awk ...` > file 

or

printf "asds %s" $(awk ....)  > file