Quote:
|
What I really want to do next is split the string of numbers into single digits
|
I'm not sure what you mean by this.
If you want the digits separated on a single line add
to your sed statement
If you want each digit on a separate line use
Code:
-e 's/\(.\)/\1^M/g'
where you create ^M by pressing Ctrl-V, Enter.
.