Hello,
I know sed is used to replace strings in text files. I just would like to know the basic syntax of that command.
I.e. : I would like to replace ISO-8859-1 by UTF-8 il all the files of a directory.
You can try this, I think it's what you are requesting :
sed -e 's/ISO-8859-1/UTF-8/' /blahblah/*
Let me know if it's not what you are asking.
Cheers,