![]() |
Manipulating Text File with awk or sed
Hello,
I am in a peculiar situation. I have got a large text file (around 1 GB) which has data in this format: Code:
0:55589633: 33and I would like it to appear it as: Code:
55589633 33Code:
0:55589633: 33 |
Maybe something like this
Code:
awk -F: '{print$2'\t'$3}' file.txt |
And for a sed example
Code:
sed 's/ 0:\|://g' file.txt |
| All times are GMT -5. The time now is 11:55 PM. |