When I use text editor for seeing content of file a.csv it shows me:
aaa bbb ccc ddd eee fff ggg hhh iii jjj kkk
But when I cat it I have:
��aaa bbb ccc ddd eee fff ggg hhh iii jjj kkk
So when I want to remove first to characters �� I can't do that. For example:
cat a.csv | sed 's/\(.\{2\}\)//'
The result is:
��aa bbb ccc ddd eee fff ggg hhh iii jjj kkk