I have two question in split
command:
1) How can we split a huge file in this format?
x0
x1
.
.
.
x10
.
.
.
2) How can we split a huge file in this format?
0
1
.
.
.
10
.
.
.
100
.
.
.
What I tried is not satisfactory because result is:
x00
x01
x02
.
.
.
x10
.
.
.
x100
.
.
.
Thank you