in reply to How can I remove 0 from first line and empty space from the start of the following line and join them
awk 'BEGIN { ORS=""; OFS="\t" } /^0/ {print $2, $3, $4, $5} /^[ \t]/ +{print $0, "\n" }' [download]