"df -h" command puts line breaks in output. How do I fix?
Try: df -Pkh
The P stands for "portable", and will force it to follow POSIX standard output.
I have a hunch will fix any clever formatting that df tries to do.
In the future when you try to solve problems like these, try man df
and see if you can find anything that looks like it might work... cause thats what I did =)
df -Ph | awk '{printf "%-35s%-10s%-10s%-10s%-5s%s\n",$1,$2,$3,$4,$5,$6}'