Hi,
I need to change the below string in a file
CIMCRASMTAAMPF 2208200600000000000038541254125 @@@Y
to
ICFFH,ASMTAAMPF,,,IMCR,22082006,000038541254125
Please help.
Hi,
I need to change the below string in a file
CIMCRASMTAAMPF 2208200600000000000038541254125 @@@Y
to
ICFFH,ASMTAAMPF,,,IMCR,22082006,000038541254125
Please help.
Hi,
I need to change the below string in a file
CIMCRASMTAAMPF 2208200600000000000038541254125 @@@Y
to
ICFFH,ASMTAAMPF,,,IMCR,22082006,000038541254125
Please help.
sed 's/CIMCRASMTAAMPF 2208200600000000000038541254125 @@@Y/ICFFH,ASMTAAMPF,,,IMCR,22082006,000038541254125/' infile > tmpfile && mv tmpfile infile
Jean-Pierre.