I have the following file ( example of typical file.txt )
remark - parameters are with different length
param1=353
param2=726
param3=75.32
param4=21.03
number100=234
arg1=100
the_last_number=true
x=55
.
.
.
How to translate file.txt to the following format: ( by printf or other solution that can be part of my bash script)
1 param1.....................353
2 param2.....................726
3 param3.....................75.32
4 param4.....................21.03
5 number100..................234
6 agr1.......................100
7 the_last_number............true
8 x..........................55
.
.
.