I am trying to replace some sequence of character with a blank. But I am not able to replace it.
File name is Test:
id       ^[[0mevent^[[0m            ^[[0msuite^[[0m                                     ^[[0mok^[[0m     ^[[0mnok^[[0m    ^[[0mskip^[[0m  test  up        owner     du     duplex  type   stp             inst_type  prep  created              finished
I am trying to replace ^[[0m with a blank character. To do so I am using the following command to achieve the aforementioned task.
sed 's/\^\[\[0m//g' Test
However, the above command is having not impact.
The problem is due to coloured font.
Thanks!!

 
    