3

I have a file like this (it shows in single line)

Status: 012, Id: -1434606409zzzzz, Number: +9257884Status: 013, Id: -1434606409efwe, Number: +92465745Status: 014, Id: -1434606409fwe6, Number: +9212345

I want to show format like this

Status: 012, Id: -1434606409zzzzz, Number: +9257884
Status: 013, Id: -1434606409efwe, Number: +92465745
Status: 014, Id: -1434606409fwe6, Number: +9212345

is it possible?

1 Answer 1

6

With sed:

sed 's/Status/\n&/g' file
1
  • 1
    Worked like a charm! Thank you and this community :) Its the best where I get QUICKEST replies :) thank youuuuuuu all Commented Jun 18, 2015 at 6:39

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.