I wrote:> You can run something like this over the plain text dump:> > sed -e 's/–/-/g' dump.sql >fixed.sql
Scrap that, it should of course be:
sed -e 's//-/g' dump.sql >fixed.sql
Yours,Laurenz Albe