Hello!!
As it says in the title, I need to remove the white spacing that separate only by a white spacing to two lines, as you see in the image, the white spacing that have a green line, are the ones I need to remove, but the multiple white spacing that are with a red line, I do not want to remove them, the ones with the green line, are separated by only a white spacing, I do not know if with AWK or SED or CUT will work, the problem is that I do not know how to do it, thank you for your help.
I tried to do it with SED and with AWK as follows, but it did not produce any effect
awk -F, '{gsub("\n","",$1); print}' archivo.txt
sed 's/ //g' input.txt > no-spaces.txt