I have this file, data.txt, the content is:
100X00
20X0X0
3000XX
4X00XX
I want to display in matrix format like
A B C D E
1 X
2 X X
3 X X
4 X X X
I am free to use any command, like sed/awk or grep. My current method is:
a=0
echo -e "\tA\tB\tC\tD\tE"
while read line
do a=$(($a+1));
sed '{s/0/ /g}' data.txt
done < data.txt
Of course its not working. Anyone can help me on this?