how to pipe and parse output of a command
if the output of a command is e.g. "HEIGHT=1 WIDTH=14 COLOR=red SIZE=23" how can "pipe and parse" so that I get this output in a file:
HEIGHT=1
WIDTH=14
COLOR=red
SIZE=23
something like:
thecommand | replace(" ","\n") > output.txt
thanks
|